Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: chrome/common/extensions/docs/templates/articles/activeTab.html

Issue 11777015: Fix ActiveTab sample extension (extension version in manifest needs to be a string). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698