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

Side by Side Diff: chrome/common/extensions/docs/manifest.html

Issue 527003: Revert 35602 - Add a "minimum_chrome_version" key to the manifest.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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 | « chrome/app/chrome_dll_main.cc ('k') | chrome/common/extensions/docs/static/manifest.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note: 1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note:
2 1) The <head> information in this page is significant, should be uniform 2 1) The <head> information in this page is significant, should be uniform
3 across api docs and should be edited only with knowledge of the 3 across api docs and should be edited only with knowledge of the
4 templating mechanism. 4 templating mechanism.
5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a 5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a
6 browser, it will be re-generated from the template, json schema and 6 browser, it will be re-generated from the template, json schema and
7 authored overview content. 7 authored overview content.
8 4) The <body>.innerHTML is also generated by an offline step so that this 8 4) The <body>.innerHTML is also generated by an offline step so that this
9 page may easily be indexed by search engines. 9 page may easily be indexed by search engines.
10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> 10 --><html xmlns="http://www.w3.org/1999/xhtml"><head>
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 </li><li> 203 </li><li>
204 <a href="#H2-1">Field details</a> 204 <a href="#H2-1">Field details</a>
205 <ol> 205 <ol>
206 <li> 206 <li>
207 <a href="#description">description</a> 207 <a href="#description">description</a>
208 </li><li> 208 </li><li>
209 <a href="#icons">icons</a> 209 <a href="#icons">icons</a>
210 </li><li> 210 </li><li>
211 <a href="#name">name</a> 211 <a href="#name">name</a>
212 </li><li> 212 </li><li>
213 <a href="#minimum_chrome_version">Minimum Chrome Version</a>
214 </li><li>
215 <a href="#permissions">permissions</a> 213 <a href="#permissions">permissions</a>
216 </li><li> 214 </li><li>
217 <a href="#version">version</a> 215 <a href="#version">version</a>
218 </li> 216 </li>
219 </ol> 217 </ol>
220 </li> 218 </li>
221 <li style="display: none; "> 219 <li style="display: none; ">
222 <a href="#apiReference">API reference</a> 220 <a href="#apiReference">API reference</a>
223 <ol> 221 <ol>
224 <li> 222 <li>
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 288
291 <em>// Pick one (or none)</em> 289 <em>// Pick one (or none)</em>
292 "<a href="browserAction.html">browser_action</a>": {...}, 290 "<a href="browserAction.html">browser_action</a>": {...},
293 "<a href="pageAction.html">page_action</a>": {...}, 291 "<a href="pageAction.html">page_action</a>": {...},
294 "<a href="themes.html">theme</a>": {...}, 292 "<a href="themes.html">theme</a>": {...},
295 293
296 <em>// Add any of these that you need</em> 294 <em>// Add any of these that you need</em>
297 "<a href="background_pages.html">background_page</a>": "<em>aFile</em>.html", 295 "<a href="background_pages.html">background_page</a>": "<em>aFile</em>.html",
298 "<a href="override.html">chrome_url_overrides</a>": {...}, 296 "<a href="override.html">chrome_url_overrides</a>": {...},
299 "<a href="content_scripts.html">content_scripts</a>": [...], 297 "<a href="content_scripts.html">content_scripts</a>": [...],
300 "<a href="#minimum_chrome_version">minimum_chrome_version</a>": "x.y",
301 "<a href="options.html">options_page</a>": "<em>aFile</em>.html", 298 "<a href="options.html">options_page</a>": "<em>aFile</em>.html",
302 "<a href="#permissions">permissions</a>": [...], 299 "<a href="#permissions">permissions</a>": [...],
303 "<a href="npapi.html">plugins</a>": [...], 300 "<a href="npapi.html">plugins</a>": [...],
304 "<a href="autoupdate.html">update_url</a>": "http://<em>path/to/updateInfo</em >.xml" 301 "<a href="autoupdate.html">update_url</a>": "http://<em>path/to/updateInfo</em >.xml"
305 } 302 }
306 </pre> 303 </pre>
307 304
308 305
309 <a name="H2-1"></a><h2>Field details</h2> 306 <a name="H2-1"></a><h2>Field details</h2>
310 307
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 363
367 <p> 364 <p>
368 A short, plain text string 365 A short, plain text string
369 (no more than 45 characters) 366 (no more than 45 characters)
370 that identifies the extension. 367 that identifies the extension.
371 The name is used in the install dialog, 368 The name is used in the install dialog,
372 extension management UI, 369 extension management UI,
373 and the <a href="https://chrome.google.com/extensions">extension gallery</a>. 370 and the <a href="https://chrome.google.com/extensions">extension gallery</a>.
374 </p> 371 </p>
375 372
376 <h3 id="minimum_chrome_version">Minimum Chrome Version</h3> 373 <h3 id="permissions">permissions</h3>
377
378 <p>
379 The version of Google Chrome that your extension requires, if any.
380 The format for this string is the same as for the <a href="#version">version
381 field</a>.
382
383 </p><h3 id="permissions">permissions</h3>
384 374
385 <p> 375 <p>
386 An array of permissions that the extension might use. 376 An array of permissions that the extension might use.
387 Each permission can be either one of a list of known strings 377 Each permission can be either one of a list of known strings
388 (such as "tabs" or "bookmarks") 378 (such as "tabs" or "bookmarks")
389 or a match pattern 379 or a match pattern
390 that gives access to one or more hosts. 380 that gives access to one or more hosts.
391 These permissions are displayed to users before installation. 381 These permissions are displayed to users before installation.
392 Permissions might also help to limit damage 382 Permissions might also help to limit damage
393 if your extension is attacked. 383 if your extension is attacked.
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 _uff=0; 643 _uff=0;
654 urchinTracker(); 644 urchinTracker();
655 } 645 }
656 catch(e) {/* urchinTracker not available. */} 646 catch(e) {/* urchinTracker not available. */}
657 </script> 647 </script>
658 <!-- end analytics --> 648 <!-- end analytics -->
659 </div> 649 </div>
660 </div> <!-- /gc-footer --> 650 </div> <!-- /gc-footer -->
661 </div> <!-- /gc-container --> 651 </div> <!-- /gc-container -->
662 </body></html> 652 </body></html>
OLDNEW
« no previous file with comments | « chrome/app/chrome_dll_main.cc ('k') | chrome/common/extensions/docs/static/manifest.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698