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="pageCapture.html">page capture API</a> | |
36 lets you save a tab as MHTML. | |
37 </li> | |
jhurwich
2012/02/03 23:10:25
pageCapture will go to stable in M18, not M17
mkearney
2012/02/04 00:04:08
Done.
| |
38 <li> The | |
39 <a href="webRequest.html">web request API</a> | |
40 lets you intercept, block, or | |
41 modify requests in-flight and | |
42 to observe and analyze traffic. | |
43 </li> | |
44 </ul> | |
45 | |
46 <h4> Manifest changes </h4> | |
47 <ul> | |
48 <li> The <a href="contentSecurityPolicy.html">content security policy</a> | |
49 has been updated for | |
50 <a href="manifest.html#manifest_version">manifest_version 2</a>. | |
51 </li> | |
jhurwich
2012/02/03 23:10:25
I'm a little less certain on this one, but isn't m
mkearney
2012/02/04 00:04:08
Done.
| |
52 <li> | |
53 Permissions can now be | |
54 <a href="permissions.html">optional</a> | |
55 for the content setting API and web navigation API; | |
56 they can also be optional | |
57 for the new page capture API and web request API. | |
jhurwich
2012/02/03 23:10:25
Unfortunately I don't know the details of this, bu
mkearney
2012/02/04 00:04:08
Done.
| |
58 </ul> | |
59 | |
60 <h4> Additions to existing APIs </h4> | |
61 <ul> | |
62 <li>The management API's | |
63 <a href="management.html#type-ExtensionInfo">ExtensionInfo</a> object | |
64 now has a <code>disabledReason</code> property. | |
65 </li> | |
66 </ul> | |
67 | |
68 <h4> Changes to existing APIs </h4> | |
69 | |
70 <ul> | |
71 <li>The <a href="omnibox.html">omnibox API</a> | |
72 now works in | |
73 <a href="manifest.html#incognito">split incognito mode</a>. | |
74 </li> | |
75 </ul> | |
76 | |
29 <h2 id="16"> Google Chrome 16 </h2> | 77 <h2 id="16"> Google Chrome 16 </h2> |
30 | 78 |
31 <h4> New APIs </h4> | 79 <h4> New APIs </h4> |
32 <ul> | 80 <ul> |
33 <li> The | 81 <li> The |
34 <a href="webNavigation.html">web navigation API</a> | 82 <a href="webNavigation.html">web navigation API</a> |
35 lets extensions receive notifications about the status | 83 lets extensions receive notifications about the status |
36 of navigation requests. | 84 of navigation requests. |
37 You can use this API to track navigation events. | 85 You can use this API to track navigation events. |
38 </li> | 86 </li> |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
454 <ul> | 502 <ul> |
455 <li>The <a href="manifest.html#geolocation">geolocation</a> permission | 503 <li>The <a href="manifest.html#geolocation">geolocation</a> permission |
456 gives an extension access to the user's physical location. </li> | 504 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 | 505 <li><a href="match_patterns.html">Match patterns</a> can now select all |
458 schemes or all URLs. </li> | 506 schemes or all URLs. </li> |
459 <li>Access to file:/// URLs no longer triggers the "access to your machine" | 507 <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 | 508 security warning, but now requires user opt-in from the extensions |
461 management page. </li> | 509 management page. </li> |
462 </ul> | 510 </ul> |
463 | 511 |
OLD | NEW |