Index: chrome/common/extensions/docs/server2/templates/articles/whats_new.html |
diff --git a/chrome/common/extensions/docs/server2/templates/articles/whats_new.html b/chrome/common/extensions/docs/server2/templates/articles/whats_new.html |
index b0b2cd4d86d62190a01fdff8dfe1ba108a8387bd..f20420bd10ebbd7ede6d0cf817c747793d288eb6 100644 |
--- a/chrome/common/extensions/docs/server2/templates/articles/whats_new.html |
+++ b/chrome/common/extensions/docs/server2/templates/articles/whats_new.html |
@@ -7,6 +7,7 @@ made in recent releases. |
</p> |
<ul> |
+ <li> <a href="#21">Google Chrome 21</a> </li> |
<li> <a href="#20">Google Chrome 20</a> </li> |
<li> <a href="#19">Google Chrome 19</a> </li> |
<li> <a href="#18">Google Chrome 18</a> </li> |
@@ -24,18 +25,55 @@ made in recent releases. |
<li> <a href="#6">Google Chrome 6</a> </li> |
</ul> |
-<p class="note"> |
- <strong>New version of packaged apps:</strong><br> |
- There's a new version of |
- <a href="http://developer.chrome.com/trunk/apps/about_apps.html">packaged apps</a> |
- in the <a href="http://dev.chromium.org/getting-involved/dev-channel?">dev channel</a>. |
-</p> |
- |
-<p> |
-In addition to the changes listed below, |
-check out the |
-<a href="experimental.html">experimental APIs</a>. |
-</p> |
+<h2 id="21"> Google Chrome 21 </h2> |
+ |
+<h4> New Features </h4> |
+ <ul> |
+ <li>The <a href="manifest.html#sandbox">sandbox manifest entry</a> allows |
+ you to define some pages within your extension that are automatically run |
+ in a low-privilege sandbox. This sandbox is not bound by the |
+ <a href="manifest.html#content_security_policy" |
+ >content_security_policy</a>. |
+ <li>The <a href="input.ime.html">IME</a> API allows extensions to implement |
+ <a href="http://en.wikipedia.org/wiki/Input_method">input method |
+ editors</a> on Chrome OS. |
+ </ul> |
+ |
+<h4> Additions to Existing Features </h4> |
+ <ul> |
+ <li>The events in the <a href="webNavigation.html">Web Navigation API</a> |
+ now accept <a href="events.html#declarative">filters</a> which limit the |
+ URLs they fire on. |
+ <li>The <a href="types.html#method-types.ChromeSetting-set" |
+ >ChromeSetting.set()</a> method now has a |
+ <code>regular_only</code> scope. |
+ <li>The <a href="browsingData.html#type-browsingData.RemovalOptions" |
+ >browsingData.RemovalOptions</a> now has an <code>originTypes</code> |
+ property. |
+ <li>The <a href="management.html#method-uninstall" |
+ >management.uninstall()</a> method now has a <code |
+ >showConfirmDialog</code> parameter. |
+ <li>The <a href="contextMenus.html#method-create" |
+ >contextMenus.create()</a> method now allows you to specify unique |
+ IDs for each item. This is intended to be used with the new |
+ <a href="contextMenus.html#event-onClicked" |
+ >contextMenus.onClicked</a> event, to distinguish the clicked item. |
+ <li>The a href="browserAction.html#method-setIcon" |
+ >browserAction.setIcon()</a> and |
+ <a href="pageAction.html#method-setIcon" |
+ >pageAction.setIcon()</a> methods now accept optional callbacks. |
+ <li>The <a href="privacy.html#property-websites" |
+ >privacy.website</a> namespace now has a <code |
+ >protectedContentEnabled</code> property. |
+ <li>The <code>index</code> parameter to the <a href="tabs.html#method-move" |
+ >tabs.move()</a> method now accepts <code>-1</code> to indicate |
+ that the tab should be placed at the end. |
+ <li>The <code>windowId</code> parameter to the |
+ <a href="tabs.html#method-highlight">tabs.highlight()</a>< |
+ method is now optional. |
+ <li><a href="manifest.html#intents">Web intents</a> can now be used to |
+ register content-type viewers. |
+ </ul> |
<h2 id="20"> Google Chrome 20 </h2> |
@@ -132,10 +170,6 @@ check out the |
The inspected window API lets you interact with the inspected window. |
The network API lets you retrive information about network requests. |
The panels API lets you add panels and sidebars. |
- <li>The <a href="input.ime.html">input method editor API</a> |
- lets you add custom input methods |
- such as complex language characters |
- directly to the system's input device. |
<li>The <a href="pageCapture.html">page capture API</a> |
lets you save a tab as MHTML. |
<li> The <a href="privacy.html">privacy API</a> |