Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: chrome/common/extensions/docs/whats_new.html

Issue 10539122: Chrome 19 extension release notes. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/docs/static/whats_new.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note: 1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note:
2 1) The <head> information in this page is significant, should be uniform 2 1) The <head> information in this page is significant, should be uniform
3 across api docs and should be edited only with knowledge of the 3 across api docs and should be edited only with knowledge of the
4 templating mechanism. 4 templating mechanism.
5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a 5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a
6 browser, it will be re-generated from the template, json schema and 6 browser, it will be re-generated from the template, json schema and
7 authored overview content. 7 authored overview content.
8 4) The <body>.innerHTML is also generated by an offline step so that this 8 4) The <body>.innerHTML is also generated by an offline step so that this
9 page may easily be indexed by search engines. 9 page may easily be indexed by search engines.
10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> 10 --><html xmlns="http://www.w3.org/1999/xhtml"><head>
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 <!-- /TABLE OF CONTENTS --> 191 <!-- /TABLE OF CONTENTS -->
192 <!-- Standard content lead-in for experimental API pages --> 192 <!-- Standard content lead-in for experimental API pages -->
193 <!-- STATIC CONTENT PLACEHOLDER --> 193 <!-- STATIC CONTENT PLACEHOLDER -->
194 <div id="static"><div id="pageData-name" class="pageData">What's New in Extensions?</div> 194 <div id="static"><div id="pageData-name" class="pageData">What's New in Extensions?</div>
195 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> 195 <!-- <div id="pageData-showTOC" class="pageData">true</div> -->
196 <p> 196 <p>
197 This page lists the API and manifest changes 197 This page lists the API and manifest changes
198 made in recent releases. 198 made in recent releases.
199 </p> 199 </p>
200 <ul> 200 <ul>
201 <li> <a href="#19">Google Chrome 19</a> </li>
201 <li> <a href="#18">Google Chrome 18</a> </li> 202 <li> <a href="#18">Google Chrome 18</a> </li>
202 <li> <a href="#17">Google Chrome 17</a> </li> 203 <li> <a href="#17">Google Chrome 17</a> </li>
203 <li> <a href="#16">Google Chrome 16</a> </li> 204 <li> <a href="#16">Google Chrome 16</a> </li>
204 <li> <a href="#15">Google Chrome 15</a> </li> 205 <li> <a href="#15">Google Chrome 15</a> </li>
205 <li> <a href="#14">Google Chrome 14</a> </li> 206 <li> <a href="#14">Google Chrome 14</a> </li>
206 <li> <a href="#13">Google Chrome 13</a> </li> 207 <li> <a href="#13">Google Chrome 13</a> </li>
207 <li> <a href="#12">Google Chrome 12</a> </li> 208 <li> <a href="#12">Google Chrome 12</a> </li>
208 <li> <a href="#11">Google Chrome 11</a> </li> 209 <li> <a href="#11">Google Chrome 11</a> </li>
209 <li> <a href="#10">Google Chrome 10</a> </li> 210 <li> <a href="#10">Google Chrome 10</a> </li>
210 <li> <a href="#9">Google Chrome 9</a> </li> 211 <li> <a href="#9">Google Chrome 9</a> </li>
211 <li> <a href="#8">Google Chrome 8</a> </li> 212 <li> <a href="#8">Google Chrome 8</a> </li>
212 <li> <a href="#7">Google Chrome 7</a> </li> 213 <li> <a href="#7">Google Chrome 7</a> </li>
213 <li> <a href="#6">Google Chrome 6</a> </li> 214 <li> <a href="#6">Google Chrome 6</a> </li>
214 </ul> 215 </ul>
215 <p> 216 <p>
216 In addition to the changes listed below, 217 In addition to the changes listed below,
217 check out the 218 check out the
218 <a href="experimental.html">experimental APIs</a>. 219 <a href="experimental.html">experimental APIs</a>.
219 </p> 220 </p>
221 <h2 id="19"> Google Chrome 19 </h2>
222 <h4> New APIs </h4>
223 <ul>
224 <li>The <a href="browsingData.html">browsing data API</a>
225 lets you remove browsing data from a user's local profile.
226 </li><li>The <a href="topSites.html">top sites API</a>
227 gives you access to the top sites
228 that are displayed on the new tab page.
229 </li></ul>
230 <h4> Manifest changes </h4>
231 <ul>
232 <li>The new <a href="manifest.html#intents">intents</a>
233 field specifies all intent handlers provided by the extension.
234 </li></ul>
235 <h4> Additions to existing APIs </h4>
236 <ul>
237 <li>The window API's <a href="windows.html#type-Window">Window</a>
238 object now has an <code>alwaysOnTop</code> property and
239 supports the "fullscreen" state.
240 </li><li>The <code>chrome.tabs</code>
241 <a href="tabs.html#method-query">query()</a> method
242 now has the <code>currentWindow</code> and
243 <code>lastFocusedWindow</code> parameters.
244 </li><li>The <a href="browserAction.html">browser action API</a>
245 has the following new getter functions:
246 <a href="browserAction.html#method-getTitle">getTitle</a>,
247 <a href="browserAction.html#method-getBadgeText">getBadgeText</a>,
248 <a href="browserAction.html#method-getBadgeBackgroundColor">getBadgeBackg r
249 oundColor</a>, and
250 <a href="browserAction.html#method-getPopup">getPopup</a>.
251 </li><li>The <a href="pageAction.html">page action API</a>
252 has the following new getter functions:
253 <a href="pageAction.html#method-getTitle">getTitle</a> and
254 <a href="pageAction.html#method-getPopup">getPopup</a>.
255 </li></ul>
220 <h2 id="18"> Google Chrome 18 </h2> 256 <h2 id="18"> Google Chrome 18 </h2>
221 <h4> New APIs </h4> 257 <h4> New APIs </h4>
222 <ul> 258 <ul>
223 <li>The <a href="debugger.html">debugger API</a> 259 <li>The <a href="debugger.html">debugger API</a>
224 lets you use the Chrome Developer Tools 260 lets you use the Chrome Developer Tools
225 on one or more tabs remotely. 261 on one or more tabs remotely.
226 </li><li>The <a href="devtools.html">developer tools APIs</a> 262 </li><li>The <a href="devtools.html">developer tools APIs</a>
227 provide support for extending Chrome Developer Tools. 263 provide support for extending Chrome Developer Tools.
228 The inspected window API lets you interact with the inspected window. 264 The inspected window API lets you interact with the inspected window.
229 The network API lets you retrive information about network requests. 265 The network API lets you retrive information about network requests.
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 to the selected tab of the current window. 392 to the selected tab of the current window.
357 </li><li>External extension files on Mac OS can now be owned by users 393 </li><li>External extension files on Mac OS can now be owned by users
358 within a wheel group (or an admin group). 394 within a wheel group (or an admin group).
359 </li><li>The "experimental" permission is no longer required 395 </li><li>The "experimental" permission is no longer required
360 for the 396 for the
361 <a href="windows.html#type-Window">window "panel"</a> type. 397 <a href="windows.html#type-Window">window "panel"</a> type.
362 By default, the "panel" type creates a popup 398 By default, the "panel" type creates a popup
363 unless the <code>--enable-panels</code> flag is set. 399 unless the <code>--enable-panels</code> flag is set.
364 </li></ul> 400 </li></ul>
365 <h2 id="15"> Google Chrome 15 </h2> 401 <h2 id="15"> Google Chrome 15 </h2>
366 <p>Chrome 15 had a few minor API additions. Also see the Chrome Web Store’s new 402 <h4> New APIs </h4>
367 <a href="http://code.google.com/chrome/webstore/docs/inline_installation.html">i nline 403 <ul>
368 installation</a> feature, which lets your website help users install extensions 404 <li>The <a href="webstore.html">webstore API</a>
369 (and apps) without sending them away to the store.</p> 405 lets you initiate app and extensions installations
406 <a href="http://code.google.com/chrome/webstore/docs/inline_installation.html"> "inline"</a>
407 from your site.
408 </li></ul>
370 <h4> Manifest changes </h4> 409 <h4> Manifest changes </h4>
371 <ul> 410 <ul>
372 <li>The new 411 <li>The new
373 <a href="manifest.html#offline_enabled">offline_enabled</a> field 412 <a href="manifest.html#offline_enabled">offline_enabled</a> field
374 lets you specify that your app works well even without an internet 413 lets you specify that your app works well even without an internet
375 connection. 414 connection.
376 </li></ul> 415 </li></ul>
377 <h4> Additions to existing APIs </h4> 416 <h4> Additions to existing APIs </h4>
378 <ul> 417 <ul>
379 <li>You can retrieve permission warnings using the new management API method s 418 <li>You can retrieve permission warnings using the new management API method s
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 _uff=0; 700 _uff=0;
662 urchinTracker(); 701 urchinTracker();
663 } 702 }
664 catch(e) {/* urchinTracker not available. */} 703 catch(e) {/* urchinTracker not available. */}
665 </script> 704 </script>
666 <!-- end analytics --> 705 <!-- end analytics -->
667 </div> 706 </div>
668 </div> <!-- /gc-footer --> 707 </div> <!-- /gc-footer -->
669 </div> <!-- /gc-container --> 708 </div> <!-- /gc-container -->
670 </body></html> 709 </body></html>
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/static/whats_new.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698