OLD | NEW |
1 <style> | 1 <style> |
2 #active-tab-images { | 2 #active-tab-images { |
3 margin-top: 1em; | 3 margin-top: 1em; |
4 } | 4 } |
5 #active-tab-images tr { | 5 #active-tab-images tr { |
6 vertical-align: top; | 6 vertical-align: top; |
7 } | 7 } |
8 #active-tab-images .spacing { | 8 #active-tab-images .spacing { |
9 width: 1em; | 9 width: 1em; |
10 } | 10 } |
(...skipping 30 matching lines...) Expand all Loading... |
41 | 41 |
42 <h2 id="example">Example</h2> | 42 <h2 id="example">Example</h2> |
43 | 43 |
44 <h3 id="manifest.json">manifest.json</h3> | 44 <h3 id="manifest.json">manifest.json</h3> |
45 | 45 |
46 <p> | 46 <p> |
47 <pre> | 47 <pre> |
48 { | 48 { |
49 "manifest_version": 2, | 49 "manifest_version": 2, |
50 "name": "Page Redder", | 50 "name": "Page Redder", |
51 "version": 1, | 51 "version": "1.0", |
52 <b>"permissions": ["activeTab"]</b>, | 52 <b>"permissions": ["activeTab"]</b>, |
53 "browser_action": {}, | 53 "browser_action": {}, |
54 "background": { | 54 "background": { |
55 "scripts": ["background.js"], | 55 "scripts": ["background.js"], |
56 "persistent": false | 56 "persistent": false |
57 } | 57 } |
58 } | 58 } |
59 </pre> | 59 </pre> |
60 </p> | 60 </p> |
61 | 61 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 <p> | 99 <p> |
100 The following user gestures enable <code>activeTab</code>: | 100 The following user gestures enable <code>activeTab</code>: |
101 <ul> | 101 <ul> |
102 <li>Executing a <a href="browserAction.html">browser action</a> | 102 <li>Executing a <a href="browserAction.html">browser action</a> |
103 <li>Executing a <a href="pageAction.html">page action</a> | 103 <li>Executing a <a href="pageAction.html">page action</a> |
104 <li>Executing a <a href="contextMenus.html">context menu item</a> | 104 <li>Executing a <a href="contextMenus.html">context menu item</a> |
105 <li>Executing a keyboard shortcut from the <a href="commands.html">commands AP
I</a> | 105 <li>Executing a keyboard shortcut from the <a href="commands.html">commands AP
I</a> |
106 <li>Accepting a suggestion from the <a href="omnibox.html">omnibox API</a> | 106 <li>Accepting a suggestion from the <a href="omnibox.html">omnibox API</a> |
107 </ul> | 107 </ul> |
108 </p> | 108 </p> |
OLD | NEW |