| Index: chrome/common/extensions/docs/templates/private/intro_table.html
|
| diff --git a/chrome/common/extensions/docs/templates/private/intro_table.html b/chrome/common/extensions/docs/templates/private/intro_table.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2703aa54a69c60887e789c35c547e089ef193f55
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/docs/templates/private/intro_table.html
|
| @@ -0,0 +1,65 @@
|
| +<table class="intro">
|
| + <tr>
|
| + <th scope="col"></th>
|
| + <th scope="col"></th>
|
| + </tr>
|
| + <tr>
|
| + <td>
|
| + <strong>Description:</strong>
|
| + </td>
|
| + <td>
|
| + {{?api.description}}
|
| + {{{api.description}}}
|
| + {{:}}
|
| + The <code>chrome.{{api.name}}</code> API
|
| + {{/api.description}}
|
| + </td>
|
| + </tr>
|
| + <tr>
|
| + <td>
|
| + <strong>Availability:</strong>
|
| + </td>
|
| + <td>
|
| + {{?api.availability}}
|
| + Chrome {{api.availability}}
|
| + {{:api.availability}}
|
| + {{?api.experimental}}
|
| + Experimental only (see <a href="experimental.html#using">How to use experimental APIs</a>)
|
| + {{:api.experimental}}
|
| + Available.
|
| + {{/api.experimental}}
|
| + {{/api.availability}}
|
| + </td>
|
| + </tr>
|
| + <tr>
|
| + <td>
|
| + <strong>Permissions:</strong>
|
| + </td>
|
| + <td>
|
| + {{?api.api_permissions}}
|
| + {{#api.api_permissions}}
|
| + {{?permission}}<code>{{permission}}</code>{{/permission}}
|
| + {{?extra}}{{{extra}}}{{/extra}}
|
| + <br>
|
| + {{/api.api_permissions}}
|
| + {{:api.api_permissions}}
|
| + None
|
| + {{/api.api_permissions}}
|
| + </td>
|
| + </tr>
|
| + {{?api.learn_more}}
|
| + <tr>
|
| + <td>
|
| + <strong>Learn more:</strong>
|
| + </td>
|
| + <td>
|
| + {{#api.learn_more}}
|
| + {{?prefix}}{{prefix}}{{/prefix}}
|
| + <a href='{{href}}'>{{content}}</a>
|
| + {{?suffix}}{{suffix}}{{/suffix}}
|
| + <br>
|
| + {{/api.learn_more}}
|
| + </td>
|
| + </tr>
|
| + {{/}}
|
| +</table>
|
|
|