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

Side by Side Diff: chrome/common/extensions/docs/static/devguide.html

Issue 1783012: Cleanup pass. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 7 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 <div id="pageData-name" class="pageData">Developer's Guide</div> 1 <div id="pageData-name" class="pageData">Developer's Guide</div>
2 2
3 <p> 3 <p>
4 These pages assume you've completed 4 These pages assume you've completed
5 the <a href="getstarted.html">Getting Started</a> tutorial 5 the <a href="getstarted.html">Getting Started</a> tutorial
6 and <a href="overview.html">Overview</a>. 6 and <a href="overview.html">Overview</a>.
7 </p> 7 </p>
8 8
9 <table class="columns"> 9 <table class="columns">
10 <tr> 10 <tr>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 </tr> 43 </tr>
44 <tr> 44 <tr>
45 <td> <a href="bookmarks.html">Bookmarks</a> </td> 45 <td> <a href="bookmarks.html">Bookmarks</a> </td>
46 <td> Create, organize, and otherwise manipulate the user's bookmarks </td> 46 <td> Create, organize, and otherwise manipulate the user's bookmarks </td>
47 </tr> 47 </tr>
48 <tr> 48 <tr>
49 <td> <a href="events.html">Events</a> </td> 49 <td> <a href="events.html">Events</a> </td>
50 <td> Detect when something interesting happens </td> 50 <td> Detect when something interesting happens </td>
51 </tr> 51 </tr>
52 <tr> 52 <tr>
53 <td> <a href="i18n.html">I18n</a> </td> 53 <td> <a href="history.html">History</a> </td>
54 <td> Deal with language and locale </td> 54 <td> Interact with the browser's record of visited pages </td>
55 </tr> 55 </tr>
56 <tr> 56 <tr>
57 <td> <a href="tabs.html">Tabs</a> </td> 57 <td> <a href="tabs.html">Tabs</a> </td>
58 <td> Create, modify, and rearrange tabs in the browser </td> 58 <td> Create, modify, and rearrange tabs in the browser </td>
59 </tr> 59 </tr>
60 <tr> 60 <tr>
61 <td> <a href="windows.html">Windows</a> </td> 61 <td> <a href="windows.html">Windows</a> </td>
62 <td> Create, modify, and rearrange windows in the browser </td> 62 <td> Create, modify, and rearrange windows in the browser </td>
63 </tr> 63 </tr>
64 64
65 <tr> 65 <tr>
66 <td colspan="2"><h4>Implementing the innards of your extension</h4></td> 66 <td colspan="2"><h4>Implementing the innards of your extension</h4></td>
67 </tr> 67 </tr>
68 <tr> 68 <tr>
69 <td colspan="2"> &nbsp;</td> 69 <td colspan="2"> &nbsp;</td>
70 </tr> 70 </tr>
71 <tr> 71 <tr>
72 <td> <a href="background_pages.html">Background&nbsp;Pages</a> </td> 72 <td> <a href="background_pages.html">Background&nbsp;Pages</a> </td>
73 <td> Put all the common code for your extension in a single place </td> 73 <td> Put all the common code for your extension in a single place </td>
74 </tr> 74 </tr>
75 <tr> 75 <tr>
76 <td> <a href="content_scripts.html">Content&nbsp;Scripts</a> </td> 76 <td> <a href="content_scripts.html">Content&nbsp;Scripts</a> </td>
77 <td> Run JavaScript code in the context of web pages </td> 77 <td> Run JavaScript code in the context of web pages </td>
78 </tr> 78 </tr>
79 <tr> 79 <tr>
80 <td> <a href="xhr.html">Cross-Origin&nbsp;XHR</a> </td> 80 <td> <a href="xhr.html">Cross-Origin&nbsp;XHR</a> </td>
81 <td> Use XMLHttpRequest to send and receive data from remote servers </td> 81 <td> Use XMLHttpRequest to send and receive data from remote servers </td>
82 </tr> 82 </tr>
83 <tr> 83 <tr>
84 <td> <a href="i18n.html">Internationalization</a> </td>
85 <td> Deal with language and locale </td>
86 </tr>
87 <tr>
84 <td> <a href="messaging.html">Message&nbsp;Passing</a> </td> 88 <td> <a href="messaging.html">Message&nbsp;Passing</a> </td>
85 <td> Communicate from a content script to its parent extension, 89 <td> Communicate from a content script to its parent extension,
86 or vice versa</td> 90 or vice versa</td>
87 </tr> 91 </tr>
88 <tr> 92 <tr>
89 <td> <a href="npapi.html">NPAPI&nbsp;Plugins</a> </td> 93 <td> <a href="npapi.html">NPAPI&nbsp;Plugins</a> </td>
90 <td> Load native binary code </td> 94 <td> Load native binary code </td>
91 </tr> 95 </tr>
92 96
93 <tr> 97 <tr>
94 <td colspan="2"><h4>Finishing and distributing your extension</h4></td> 98 <td colspan="2"><h4>Finishing and distributing your extension</h4></td>
95 </tr> 99 </tr>
96 <tr> 100 <tr>
97 <td colspan="2"> &nbsp;</td> 101 <td colspan="2"> &nbsp;</td>
98 </tr> 102 </tr>
99 <tr> 103 <tr>
100 <td> <a href="autoupdate.html">Autoupdating</a> </td> 104 <td> <a href="autoupdate.html">Autoupdating</a> </td>
101 <td> Update extensions automatically </td> 105 <td> Update extensions automatically </td>
102 </tr> 106 </tr>
103 <tr> 107 <tr>
108 <td> <a href="external_extensions.html">External Extensions</a> </td>
109 <td> Install extensions automatically </td>
110 </tr>
111 <tr>
104 <td> <a href="hosting.html">Hosting</a> </td> 112 <td> <a href="hosting.html">Hosting</a> </td>
105 <td> Host extensions on your own servers </td> 113 <td> Host extensions on your own servers </td>
106 </tr> 114 </tr>
107 <tr> 115 <tr>
108 <td> <a href="packaging.html">Packaging</a> </td> 116 <td> <a href="packaging.html">Packaging</a> </td>
109 <td> Create a .crx file so you can distribute your extension </td> 117 <td> Create a .crx file so you can distribute your extension </td>
110 </tr> 118 </tr>
111 </table> 119 </table>
112 120
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/packaging.html ('k') | chrome/common/extensions/docs/static/packaging.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698