Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <h1>What's New in Extensions?</h1> | 1 <h1>What's New in Extensions?</h1> |
| 2 <!-- --> | 2 <!-- --> |
| 3 | 3 |
| 4 <p> | 4 <p> |
| 5 This page lists the API and manifest changes | 5 This page lists the API and manifest changes |
| 6 made in recent releases. | 6 made in recent releases. |
| 7 </p> | 7 </p> |
| 8 | 8 |
| 9 <h2 id="26"> Google Chrome 26 </h2> | 9 <h2 id="26"> Google Chrome 26 </h2> |
| 10 | 10 |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 486 <li>The $ref:windows.create | 486 <li>The $ref:windows.create |
| 487 method can now take a <code>focused</code> value. | 487 method can now take a <code>focused</code> value. |
| 488 Previously, all new windows had the keyboard focus; | 488 Previously, all new windows had the keyboard focus; |
| 489 now you can create windows without interrupting the user's typing. | 489 now you can create windows without interrupting the user's typing. |
| 490 <li>If the manifest specifies "experimental" permission, | 490 <li>If the manifest specifies "experimental" permission, |
| 491 your extension can specify "panel" as the value of | 491 your extension can specify "panel" as the value of |
| 492 the <code>type</code> field in | 492 the <code>type</code> field in |
| 493 the $ref:windows.create | 493 the $ref:windows.create |
| 494 method | 494 method |
| 495 or the $ref:windows.Window type. | 495 or the $ref:windows.Window type. |
| 496 <li>The $ref:cookies.onChanged | 496 <!-- <li>The $ref:cookies.onChanged |
|
cduvall
2013/03/21 18:43:53
Fix this, and uncomment.
epeterson
2013/03/25 19:35:11
Done.
| |
| 497 event of <code>chrome.cookies</code> | 497 event of <code>chrome.cookies</code> |
| 498 now has a <code>cause</code> parameter. | 498 now has a <code>cause</code> parameter. --> |
| 499 <li>The <code>chrome.contextMenus</code> | 499 <li>The <code>chrome.contextMenus</code> |
| 500 $ref:contextMenus.create and | 500 $ref:contextMenus.create and |
| 501 $ref:contextMenus.update | 501 $ref:contextMenus.update |
| 502 methods now let you specify a context value of "frame". | 502 methods now let you specify a context value of "frame". |
| 503 </ul> | 503 </ul> |
| 504 | 504 |
| 505 <h2 id="11"> Google Chrome 11 </h2> | 505 <h2 id="11"> Google Chrome 11 </h2> |
| 506 | 506 |
| 507 <h4> Changes to existing APIs </h4> | 507 <h4> Changes to existing APIs </h4> |
| 508 <ul> | 508 <ul> |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 643 <h4> Manifest changes </h4> | 643 <h4> Manifest changes </h4> |
| 644 <ul> | 644 <ul> |
| 645 <li>The <a href="manifest.html#geolocation">geolocation</a> permission | 645 <li>The <a href="manifest.html#geolocation">geolocation</a> permission |
| 646 gives an extension access to the user's physical location. | 646 gives an extension access to the user's physical location. |
| 647 <li><a href="match_patterns.html">Match patterns</a> can now select all | 647 <li><a href="match_patterns.html">Match patterns</a> can now select all |
| 648 schemes or all URLs. | 648 schemes or all URLs. |
| 649 <li>Access to file:/// URLs no longer triggers the "access to your machine" | 649 <li>Access to file:/// URLs no longer triggers the "access to your machine" |
| 650 security warning, but now requires user opt-in from the extensions | 650 security warning, but now requires user opt-in from the extensions |
| 651 management page. | 651 management page. |
| 652 </ul> | 652 </ul> |
| OLD | NEW |