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

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

Issue 5748001: Release notes for M9. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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
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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 <!-- STATIC CONTENT PLACEHOLDER --> 304 <!-- STATIC CONTENT PLACEHOLDER -->
305 <div id="static"><div id="pageData-name" class="pageData">What's New in Extensions?</div> 305 <div id="static"><div id="pageData-name" class="pageData">What's New in Extensions?</div>
306 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> 306 <!-- <div id="pageData-showTOC" class="pageData">true</div> -->
307 307
308 <p> 308 <p>
309 This page lists the API and manifest changes 309 This page lists the API and manifest changes
310 made in recent releases. 310 made in recent releases.
311 </p> 311 </p>
312 312
313 <ul> 313 <ul>
314 <li> <a href="#9">Google Chrome 9</a> </li>
314 <li> <a href="#8">Google Chrome 8</a> </li> 315 <li> <a href="#8">Google Chrome 8</a> </li>
315 <li> <a href="#7">Google Chrome 7</a> </li> 316 <li> <a href="#7">Google Chrome 7</a> </li>
316 <li> <a href="#6">Google Chrome 6</a> </li> 317 <li> <a href="#6">Google Chrome 6</a> </li>
317 </ul> 318 </ul>
318 319
319 320
321 <h2 id="9"> Google Chrome 9 </h2>
322
323 <h4> New APIs </h4>
324 <ul>
325 <li>The <a href="omnibox.html">omnibox API</a> allows you to
326 register a keyword with Chrome's address bar. </li>
327 </ul>
328
329 <!-- <h4> Manifest changes </h4> -->
330 <!-- <h4> New experimental APIs </h4> -->
331
332 <h4> Additions to existing APIs </h4>
333 <ul>
334 <li> The <a href="tabs.html#type-Tab">Tab</a> object
335 now has a <code>pinned</code> property
336 that's reflected in various <code>chrome.tabs</code> methods.
337 For example,
338 you can <a href="tabs.html#method-create">create</a>
339 a pinned tab. </li>
340 <li> The <a href="windows.html#method-create">chrome.windows.create()</a>
341 method's first parameter can now be an array of string,
342 letting you create an array of tabs. </li>
343 <li> The <a href="windows.html#method-create">chrome.windows.create()</a>
344 method now has a <code>tabId</code> parameter.
345 Use it to move a tab out of its current window
346 and into a new window. </li>
347 <li> The new
348 <a href="management.html#method-get">chrome.management.get()</a> method
349 lets you get information about the specified extension or app. </li>
350 </ul>
351
352
320 <h2 id="8"> Google Chrome 8 </h2> 353 <h2 id="8"> Google Chrome 8 </h2>
321 354
322 <p> 355 <p>
323 We took a break for Chrome 8. 356 We took a break for Chrome 8.
324 No API or manifest changes worth noting. 357 No API or manifest changes worth noting.
325 </p> 358 </p>
326 359
327 360
328 <h2 id="7"> Google Chrome 7 </h2> 361 <h2 id="7"> Google Chrome 7 </h2>
329 362
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 <li> a change </li> 395 <li> a change </li>
363 </ul> 396 </ul>
364 --> 397 -->
365 398
366 399
367 <h2 id="6">Google Chrome 6</h2> 400 <h2 id="6">Google Chrome 6</h2>
368 401
369 <h4> New APIs </h4> 402 <h4> New APIs </h4>
370 <ul> 403 <ul>
371 <li>The <a href="contextMenus.html">context menus API</a> allows you to 404 <li>The <a href="contextMenus.html">context menus API</a> allows you to
372 add context menus to pages or specific objects on a page 405 add context menus to pages or specific objects on a page </li>
373 </li><li>The <a href="cookies.html">cookies API</a> allows you to manage the 406 <li>The <a href="cookies.html">cookies API</a> allows you to manage the
374 browser's cookie system 407 browser's cookie system </li>
375 </li><li>The <a href="idle.html">idle API</a> allows you to detect when the 408 <li>The <a href="idle.html">idle API</a> allows you to detect when the
376 machine's idle state changes 409 machine's idle state changes </li>
377 </li></ul> 410 </ul>
378 411
379 <h4> New experimental APIs </h4> 412 <h4> New experimental APIs </h4>
380 <ul> 413 <ul>
381 <li>The <a href="experimental.omnibox.html">omnibox API</a> allows you to 414 <li>The <a href="experimental.omnibox.html">omnibox API</a> allows you to
382 add functionality to the browser's address bar 415 add functionality to the browser's address bar </li>
383 </li><li>The <a href="experimental.infobars.html">infobars API</a> allows yo u 416 <li>The <a href="experimental.infobars.html">infobars API</a> allows you
384 to add a UI panel across the top of a tab 417 to add a UI panel across the top of a tab </li>
385 </li></ul> 418 </ul>
386 419
387 <h4> Additions to existing APIs </h4> 420 <h4> Additions to existing APIs </h4>
388 <ul> 421 <ul>
389 <li>The <a href="extension.html#method-getViews">chrome.extension.getViews() </a> 422 <li>The <a href="extension.html#method-getViews">chrome.extension.getViews() </a>
390 method can now return popup views 423 method can now return popup views </li>
391 </li><li>A new <a href="windows.html#property-WINDOW_ID_NONE">WINDOW_ID_NONE </a> constant 424 <li>A new <a href="windows.html#property-WINDOW_ID_NONE">WINDOW_ID_NONE</a> constant
392 identifies when focus shifts away from the browser 425 identifies when focus shifts away from the browser </li>
393 </li><li>The new <a href="tabs.html#method-getCurrent">chrome.tabs.getCurren t()</a> method 426 <li>The new <a href="tabs.html#method-getCurrent">chrome.tabs.getCurrent()</ a> method
394 returns the tab associated with the currently executing script 427 returns the tab associated with the currently executing script </li>
395 </li></ul> 428 </ul>
396 429
397 <h4> Manifest changes </h4> 430 <h4> Manifest changes </h4>
398 <ul> 431 <ul>
399 <li>The <a href="manifest.html#geolocation">geolocation</a> permission 432 <li>The <a href="manifest.html#geolocation">geolocation</a> permission
400 gives an extension access to the user's physical location 433 gives an extension access to the user's physical location </li>
401 </li><li><a href="match_patterns.html">Match patterns</a> can now select all 434 <li><a href="match_patterns.html">Match patterns</a> can now select all
402 schemes or all URLs 435 schemes or all URLs </li>
403 </li><li>Access to file:/// URLs no longer triggers the "access to your mach ine" 436 <li>Access to file:/// URLs no longer triggers the "access to your machine"
404 security warning, but now requires user opt-in from the extensions 437 security warning, but now requires user opt-in from the extensions
405 management page 438 management page </li>
406 </li></ul> 439 </ul>
407 440
408 </div> 441 </div>
409 442
410 <!-- API PAGE --> 443 <!-- API PAGE -->
411 <div class="apiPage" style="display: none; "> 444 <div class="apiPage" style="display: none; ">
412 <a name="apiReference"></a> 445 <a name="apiReference"></a>
413 <h2>API reference: chrome.apiname </h2> 446 <h2>API reference: chrome.apiname </h2>
414 447
415 <!-- PROPERTIES --> 448 <!-- PROPERTIES -->
416 <div class="apiGroup"> 449 <div class="apiGroup">
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 _uff=0; 626 _uff=0;
594 urchinTracker(); 627 urchinTracker();
595 } 628 }
596 catch(e) {/* urchinTracker not available. */} 629 catch(e) {/* urchinTracker not available. */}
597 </script> 630 </script>
598 <!-- end analytics --> 631 <!-- end analytics -->
599 </div> 632 </div>
600 </div> <!-- /gc-footer --> 633 </div> <!-- /gc-footer -->
601 </div> <!-- /gc-container --> 634 </div> <!-- /gc-container -->
602 </body></html> 635 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698