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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/content_scripts.html

Issue 291663002: Adjustments to the fatnav and sidenav, and other CSS updates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing copyright license. Fixed bad indentation on search.js Created 6 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
OLDNEW
1 <h1>Content Scripts</h1> 1 <h1>Content Scripts</h1>
2 2
3 3
4 <p> 4 <p>
5 Content scripts are JavaScript files that run in the context of web pages. 5 Content scripts are JavaScript files that run in the context of web pages.
6 By using the standard 6 By using the standard
7 <a href="http://www.w3.org/TR/DOM-Level-2-HTML/">Document 7 <a href="http://www.w3.org/TR/DOM-Level-2-HTML/">Document
8 Object Model</a> (DOM), 8 Object Model</a> (DOM),
9 they can read details of the web pages the browser visits, 9 they can read details of the web pages the browser visits,
10 or make changes to them. 10 or make changes to them.
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 </p> 453 </p>
454 454
455 455
456 <h2 id="videos"> Videos </h2> 456 <h2 id="videos"> Videos </h2>
457 457
458 <p> 458 <p>
459 The following videos discuss concepts that are important for content scripts. 459 The following videos discuss concepts that are important for content scripts.
460 The first video describes content scripts and isolated worlds. 460 The first video describes content scripts and isolated worlds.
461 </p> 461 </p>
462 462
463 <p> 463 <div class="video-container">
464 <iframe title="YouTube video player" width="640" height="390" src="//www.youtube .com/embed/laLudeUmXHM?rel=0" frameborder="0" allowfullscreen></iframe> 464 <iframe title="YouTube video player" width="640" height="390" src="//www.youtu be.com/embed/laLudeUmXHM?rel=0" frameborder="0" allowfullscreen></iframe>
465 </p> 465 </div>
466 466
467 <p> 467 <p>
468 The next video describes message passing, 468 The next video describes message passing,
469 featuring an example of a content script 469 featuring an example of a content script
470 sending a request to its parent extension. 470 sending a request to its parent extension.
471 </p> 471 </p>
472 472
473 <p> 473 <div class="video-container">
474 <iframe title="YouTube video player" width="640" height="390" src="//www.youtube .com/embed/B4M_a7xejYI?rel=0" frameborder="0" allowfullscreen></iframe> 474 <iframe title="YouTube video player" width="640" height="390" src="//www.youtu be.com/embed/B4M_a7xejYI?rel=0" frameborder="0" allowfullscreen></iframe>
475 </p> 475 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698