| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">What's New in Extensions?</div> | 1 <div id="pageData-name" class="pageData">What's New in Extensions?</div> |
| 2 | 2 |
| 3 | 3 |
| 4 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> | 4 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> |
| 5 | 5 |
| 6 <style> | 6 <style> |
| 7 #changes-listing .section { | 7 #changes-listing .section { |
| 8 margin-top:1em; | 8 margin-top:1em; |
| 9 } | 9 } |
| 10 </style> | 10 </style> |
| 11 | 11 |
| 12 <h4>Google Chrome 6</h4> | 12 <h4>Google Chrome 6</h4> |
| 13 <ul id="changes-listing"> | 13 <ul id="changes-listing"> |
| 14 <li class="section"><b>New APIs</b> | 14 <li class="section"><b>New APIs</b> |
| 15 <ul> | 15 <ul> |
| 16 <li>The <a href="contextMenus.html">Context Menus API</a> allows you to | 16 <li>The <a href="contextMenus.html">context menus API</a> allows you to |
| 17 add context menus to pages or specific objects on a page | 17 add context menus to pages or specific objects on a page |
| 18 <li>The <a href="cookies.html">Cookies API</a> allows you to manage the | 18 <li>The <a href="cookies.html">cookies API</a> allows you to manage the |
| 19 browser's cookie system | 19 browser's cookie system |
| 20 <li>The <a href="idle.html">Idle API</a> allows you to detect when the | 20 <li>The <a href="idle.html">idle API</a> allows you to detect when the |
| 21 machine's idle state changes | 21 machine's idle state changes |
| 22 </ul> | 22 </ul> |
| 23 <li class="section"><b>Manifest Changes</b> | 23 <li class="section"><b>Manifest changes</b> |
| 24 <ul> | 24 <ul> |
| 25 <li>The <a href="manifest.html#geolocation">geolocation</a> permission | 25 <li>The <a href="manifest.html#geolocation">geolocation</a> permission |
| 26 gives an extension access to the user's physical location | 26 gives an extension access to the user's physical location |
| 27 <li><a href="match_patterns.html">Match patterns</a> can now select all | 27 <li><a href="match_patterns.html">Match patterns</a> can now select all |
| 28 schemes or all urls | 28 schemes or all URLs |
| 29 <li>Access to file:/// URLs no longer triggers the "access to your machine
" | 29 <li>Access to file:/// URLs no longer triggers the "access to your machine
" |
| 30 security warning, but now requires user opt-in from the extension | 30 security warning, but now requires user opt-in from the extensions |
| 31 management page | 31 management page |
| 32 </ul> | 32 </ul> |
| 33 <li class="section"><b>Additions to existing APIs</b> | 33 <li class="section"><b>Additions to existing APIs</b> |
| 34 <ul> | 34 <ul> |
| 35 <li><a | 35 <li><a |
| 36 href="extension.html#method-getViews">chrome.extension.getViews()</a> | 36 href="extension.html#method-getViews">chrome.extension.getViews()</a> |
| 37 can now return popup views | 37 can now return popup views |
| 38 <li>Added <a | 38 <li>Added <a |
| 39 href="windows.html#property-WINDOW_ID_NONE">WINDOW_ID_NONE</a> constant | 39 href="windows.html#property-WINDOW_ID_NONE">WINDOW_ID_NONE</a> constant |
| 40 for when focus shifts away from the browser | 40 for when focus shifts away from the browser |
| 41 <li>The <a | 41 <li>The <a |
| 42 href="tabs.html#method-getCurrent">chrome.tabs.getCurrent()</a> method | 42 href="tabs.html#method-getCurrent">chrome.tabs.getCurrent()</a> method |
| 43 returns the tab associated with the currently executing script | 43 returns the tab associated with the currently executing script |
| 44 </ul> | 44 </ul> |
| 45 <li class="section"><b>New experimental APIs</b> | 45 <li class="section"><b>New experimental APIs</b> |
| 46 <ul> | 46 <ul> |
| 47 <li>The <a href="experimental.omnibox.html">Omnibox API</a> allows you to | 47 <li>The <a href="experimental.omnibox.html">omnibox API</a> allows you to |
| 48 add functionality to the browser's omnibox | 48 add functionality to the browser's address bar |
| 49 <li>The <a href="experimental.infobars.html">Infobars API</a> allows you | 49 <li>The <a href="experimental.infobars.html">infobars API</a> allows you |
| 50 to add UI panels across the top of a tab | 50 to add a UI panel across the top of a tab |
| 51 </ul> | 51 </ul> |
| 52 </ul> | 52 </ul> |
| OLD | NEW |