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

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 .video-container class so YouTube video will be responsive. 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 </p> 451 </p>
452 452
453 453
454 <h2 id="videos"> Videos </h2> 454 <h2 id="videos"> Videos </h2>
455 455
456 <p> 456 <p>
457 The following videos discuss concepts that are important for content scripts. 457 The following videos discuss concepts that are important for content scripts.
458 The first video describes content scripts and isolated worlds. 458 The first video describes content scripts and isolated worlds.
459 </p> 459 </p>
460 460
461 <p> 461 <div class="video-container">
462 <iframe title="YouTube video player" width="640" height="390" src="//www.youtube .com/embed/laLudeUmXHM?rel=0" frameborder="0" allowfullscreen></iframe> 462 <iframe title="YouTube video player" width="640" height="390" src="//www.youtu be.com/embed/laLudeUmXHM?rel=0" frameborder="0" allowfullscreen></iframe>
463 </p> 463 </div>
464 464
465 <p> 465 <p>
466 The next video describes message passing, 466 The next video describes message passing,
467 featuring an example of a content script 467 featuring an example of a content script
468 sending a request to its parent extension. 468 sending a request to its parent extension.
469 </p> 469 </p>
470 470
471 <p> 471 <div class="video-container">
472 <iframe title="YouTube video player" width="640" height="390" src="//www.youtube .com/embed/B4M_a7xejYI?rel=0" frameborder="0" allowfullscreen></iframe> 472 <iframe title="YouTube video player" width="640" height="390" src="//www.youtu be.com/embed/B4M_a7xejYI?rel=0" frameborder="0" allowfullscreen></iframe>
473 </p> 473 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698