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 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> | 2 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> |
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 <ul> | 9 <ul> |
| 10 <li> <a href="#17">Google Chrome 17</a> </li> |
10 <li> <a href="#16">Google Chrome 16</a> </li> | 11 <li> <a href="#16">Google Chrome 16</a> </li> |
11 <li> <a href="#15">Google Chrome 15</a> </li> | 12 <li> <a href="#15">Google Chrome 15</a> </li> |
12 <li> <a href="#14">Google Chrome 14</a> </li> | 13 <li> <a href="#14">Google Chrome 14</a> </li> |
13 <li> <a href="#13">Google Chrome 13</a> </li> | 14 <li> <a href="#13">Google Chrome 13</a> </li> |
14 <li> <a href="#12">Google Chrome 12</a> </li> | 15 <li> <a href="#12">Google Chrome 12</a> </li> |
15 <li> <a href="#11">Google Chrome 11</a> </li> | 16 <li> <a href="#11">Google Chrome 11</a> </li> |
16 <li> <a href="#10">Google Chrome 10</a> </li> | 17 <li> <a href="#10">Google Chrome 10</a> </li> |
17 <li> <a href="#9">Google Chrome 9</a> </li> | 18 <li> <a href="#9">Google Chrome 9</a> </li> |
18 <li> <a href="#8">Google Chrome 8</a> </li> | 19 <li> <a href="#8">Google Chrome 8</a> </li> |
19 <li> <a href="#7">Google Chrome 7</a> </li> | 20 <li> <a href="#7">Google Chrome 7</a> </li> |
20 <li> <a href="#6">Google Chrome 6</a> </li> | 21 <li> <a href="#6">Google Chrome 6</a> </li> |
21 </ul> | 22 </ul> |
22 | 23 |
23 <p> | 24 <p> |
24 In addition to the changes listed below, | 25 In addition to the changes listed below, |
25 check out the | 26 check out the |
26 <a href="experimental.html">experimental APIs</a>. | 27 <a href="experimental.html">experimental APIs</a>. |
27 </p> | 28 </p> |
28 | 29 |
| 30 <h2 id="17"> Google Chrome 17 </h2> |
| 31 |
| 32 <h4> New APIs </h4> |
| 33 <ul> |
| 34 <li> The |
| 35 <a href="webRequest.html">web request API</a> |
| 36 lets you intercept, block, or |
| 37 modify requests in-flight and |
| 38 to observe and analyze traffic. |
| 39 </li> |
| 40 </ul> |
| 41 |
| 42 <h4> Manifest changes </h4> |
| 43 <ul> |
| 44 <li> |
| 45 Permissions can be |
| 46 <a href="permissions.html">optional</a> |
| 47 for the content setting API, the web navigation API, and |
| 48 the new web request API. |
| 49 </ul> |
| 50 |
| 51 <h4> Additions to existing APIs </h4> |
| 52 <ul> |
| 53 <li>The management API's |
| 54 <a href="management.html#type-ExtensionInfo">ExtensionInfo</a> object |
| 55 now has a <code>disabledReason</code> property. |
| 56 </li> |
| 57 </ul> |
| 58 |
| 59 <h4> Changes to existing APIs </h4> |
| 60 |
| 61 <ul> |
| 62 <li>The <a href="omnibox.html">omnibox API</a> |
| 63 now works in |
| 64 <a href="manifest.html#incognito">split incognito mode</a>. |
| 65 </li> |
| 66 </ul> |
| 67 |
29 <h2 id="16"> Google Chrome 16 </h2> | 68 <h2 id="16"> Google Chrome 16 </h2> |
30 | 69 |
31 <h4> New APIs </h4> | 70 <h4> New APIs </h4> |
32 <ul> | 71 <ul> |
33 <li> The | 72 <li> The |
34 <a href="webNavigation.html">web navigation API</a> | 73 <a href="webNavigation.html">web navigation API</a> |
35 lets extensions receive notifications about the status | 74 lets extensions receive notifications about the status |
36 of navigation requests. | 75 of navigation requests. |
37 You can use this API to track navigation events. | 76 You can use this API to track navigation events. |
38 </li> | 77 </li> |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 <ul> | 493 <ul> |
455 <li>The <a href="manifest.html#geolocation">geolocation</a> permission | 494 <li>The <a href="manifest.html#geolocation">geolocation</a> permission |
456 gives an extension access to the user's physical location. </li> | 495 gives an extension access to the user's physical location. </li> |
457 <li><a href="match_patterns.html">Match patterns</a> can now select all | 496 <li><a href="match_patterns.html">Match patterns</a> can now select all |
458 schemes or all URLs. </li> | 497 schemes or all URLs. </li> |
459 <li>Access to file:/// URLs no longer triggers the "access to your machine" | 498 <li>Access to file:/// URLs no longer triggers the "access to your machine" |
460 security warning, but now requires user opt-in from the extensions | 499 security warning, but now requires user opt-in from the extensions |
461 management page. </li> | 500 management page. </li> |
462 </ul> | 501 </ul> |
463 | 502 |
OLD | NEW |