| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 #pics { | 2 #pics { |
| 3 margin:2em 1em 1.5em; | 3 margin:2em 1em 1.5em; |
| 4 } | 4 } |
| 5 | 5 |
| 6 #pics td { | 6 #pics td { |
| 7 text-align:center; | 7 text-align:center; |
| 8 width:33%!important; | 8 width:33%!important; |
| 9 border:none; | 9 border:none; |
| 10 padding:1em; | 10 padding:1em; |
| 11 font-size:90%; | 11 font-size:90%; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #pics img { | 14 #pics img { |
| 15 width:180px; | 15 width:180px; |
| 16 height:85px; | 16 height:85px; |
| 17 border:1px solid black; | 17 border:none; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 | 20 |
| 21 <div id="pageData-title" class="pageData">Google Chrome Extensions: Developer Do
cumentation</div> | 21 <div id="pageData-title" class="pageData">Google Chrome Extensions: Developer Do
cumentation</div> |
| 22 | 22 |
| 23 <h3>Hello There!</h3> | 23 <h3>Hello There!</h3> |
| 24 | 24 |
| 25 <p> | 25 <p> |
| 26 <em>Extensions</em> are small software programs | 26 <em>Extensions</em> are small software programs |
| 27 that can modify and enhance the functionality of Google Chrome. | 27 that can modify and enhance the functionality of Google Chrome. |
| 28 </p> | 28 </p> |
| 29 | 29 |
| 30 <p> | 30 <p> |
| 31 You write them using web technologies like | 31 You write them using web technologies like |
| 32 HTML, JavaScript, and CSS. | 32 HTML, JavaScript, and CSS. |
| 33 So if you know how to write web pages, | 33 So if you know how to write web pages, |
| 34 you already know most of what | 34 you already know most of what |
| 35 you need to know to write extensions. | 35 you need to know to write extensions. |
| 36 </p> | 36 </p> |
| 37 | 37 |
| 38 <p> | 38 <p> |
| 39 Here are some examples of what you can build with extensions: | 39 Here are some examples of what you can build with extensions: |
| 40 <span class="comment"> |
| 41 [PENDING: improve * actions screenshots, so there are fewer unnecessary |
| 42 differences between them.] |
| 43 </span> |
| 40 </p> | 44 </p> |
| 41 | 45 |
| 42 <table id="pics"> | 46 <table id="pics"> |
| 43 <tr> | 47 <tr> |
| 44 <td valign="top"> | 48 <td valign="top"> |
| 45 <b>Toolstrips</b><br> | 49 <b>Page actions</b><br> |
| 46 <a href="toolstrip.html"><img src="images/index/toolstrip.png"></a> | 50 <a href="pageAction.html"><img src="images/index/page_action.png" |
| 51 width="180"></a> |
| 47 <br> | 52 <br> |
| 48 Display small toolbars in Google Chrome's chrome | 53 Display small icons in the address bar, but only for specific pages |
| 49 </td> | 54 </td> |
| 50 <td valign="top"> | 55 <td valign="top"> |
| 51 <b>Page actions</b><br> | 56 <b>Browser actions</b><br> |
| 52 <a href="pageAction.html"><img src="images/index/page_action.png"></a> | 57 <a href="browserAction.html"><img src="images/index/browser_action.png" |
| 58 width="240"></a> |
| 53 <br> | 59 <br> |
| 54 Add buttons to the Omnibox that get displayed for specific pages | 60 Display small icons in the toolbar, |
| 61 optionally with a custom popup |
| 55 </td> | 62 </td> |
| 56 <td valign="top"> | 63 <td valign="top"> |
| 57 <b>Content scripts</b><br> | 64 <b>Content scripts</b><br> |
| 58 <a href="content_scripts.html"><img src="images/index/content_script.png">
</a> | 65 <a href="content_scripts.html"><img src="images/index/content_script.png" |
| 66 width="180"></a> |
| 59 <br> | 67 <br> |
| 60 Modify the look and behavior of web pages | 68 Modify the look and behavior of web pages |
| 61 </td> | 69 </td> |
| 62 </tr> | 70 </tr> |
| 63 </table> | 71 </table> |
| 64 | 72 |
| 65 <p> | 73 <p> |
| 66 This website contains all the information | 74 This website contains all the information |
| 67 you need to build extensions. | 75 you need to build extensions. |
| 68 Start with one of these sections: | 76 Start with one of these sections: |
| (...skipping 11 matching lines...) Expand all Loading... |
| 80 </li> | 88 </li> |
| 81 <li> | 89 <li> |
| 82 <a href="devguide.html">Developer's Guide</a>: | 90 <a href="devguide.html">Developer's Guide</a>: |
| 83 Get detailed information on using each feature and API | 91 Get detailed information on using each feature and API |
| 84 </li> | 92 </li> |
| 85 </ul> | 93 </ul> |
| 86 | 94 |
| 87 <p> | 95 <p> |
| 88 Also check out the discussion group: | 96 Also check out the discussion group: |
| 89 <a href="http://groups.google.com/group/chromium-extensions">chromium-extensions
</a> | 97 <a href="http://groups.google.com/group/chromium-extensions">chromium-extensions
</a> |
| OLD | NEW |