diff options
Diffstat (limited to 'chrome/common/extensions/docs/tabs.html')
-rw-r--r-- | chrome/common/extensions/docs/tabs.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/common/extensions/docs/tabs.html b/chrome/common/extensions/docs/tabs.html index 3e52a39..8477c3a 100644 --- a/chrome/common/extensions/docs/tabs.html +++ b/chrome/common/extensions/docs/tabs.html @@ -306,12 +306,14 @@ create, modify, and rearrange tabs in the browser. <p>You must declare the "tabs" permission in your extension's manifest to use the tabs API. For example: </p> + <pre>{ - "name": "My extension that uses tabs", - "version": "0.1", -<b> "permissions": [ + "name": "My extension", + ... + <b>"permissions": [ "tabs" - ]</b> + ]</b>, + ... }</pre> <h2 id="examples"> Examples </h2> |