| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">Frequently Asked Questions</div> | 1 <div id="pageData-name" class="pageData">Frequently Asked Questions</div> |
| 2 | 2 |
| 3 | 3 |
| 4 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> | 4 <!-- <div id="pageData-showTOC" class="pageData">true</div> --> |
| 5 | 5 |
| 6 <p> | 6 <p> |
| 7 If you don't find an answer to your question here, | 7 If you don't find an answer to your question here, |
| 8 try the | 8 try the |
| 9 <a href="http://code.google.com/chrome/webstore/faq.html">Chrome Web Store FAQ</
a>, the | 9 <a href="http://code.google.com/chrome/webstore/faq.html">Chrome Web Store FAQ</
a>, the |
| 10 <a href="http://groups.google.com/a/chromium.org/group/chromium-extensions">grou
p</a>, or the | 10 <a href="http://groups.google.com/a/chromium.org/group/chromium-extensions">grou
p</a>, or the |
| 11 <a href="http://www.google.com/support/chrome/bin/answer.py?answer=113909">galle
ry help</a>. | 11 <a href="http://www.google.com/support/chrome_webstore/">store help</a>. |
| 12 <!-- PENDING: add a link to store help --> | |
| 13 </p> | 12 </p> |
| 14 | 13 |
| 15 <div id="faq-TOC"> | 14 <div id="faq-TOC"> |
| 16 <h4>General</h4> | 15 <h4>General</h4> |
| 17 <ul> | 16 <ul> |
| 18 <li><a href="#faq-gen-01">What are Google Chrome Extensions?</a></li> | 17 <li><a href="#faq-gen-01">What are Google Chrome Extensions?</a></li> |
| 19 <li><a href="#faq-dev-01">How can I set up Chrome for extension development?
</a></li> | 18 <li><a href="#faq-dev-01">How can I set up Chrome for extension development?
</a></li> |
| 20 <li><a href="#faq-gen-02">What technologies are used to write extensions for
Chrome?</a></li> | 19 <li><a href="#faq-gen-02">What technologies are used to write extensions for
Chrome?</a></li> |
| 21 <li><a href="#faq-gen-03">Are extensions fetched from the web every time the
browser is loaded?</a></li> | 20 <li><a href="#faq-gen-03">Are extensions fetched from the web every time the
browser is loaded?</a></li> |
| 22 <li><a href="#faq-dev-14">How do I determine which version of Chrome is depl
oyed to which channel?</a></li> | 21 <li><a href="#faq-dev-14">How do I determine which version of Chrome is depl
oyed to which channel?</a></li> |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 Yes, there are extensions that use OAuth to access remote data | 189 Yes, there are extensions that use OAuth to access remote data |
| 191 APIs. Most developers find it convenient to use a | 190 APIs. Most developers find it convenient to use a |
| 192 <a href="http://unitedheroes.net/OAuthSimple/js/OAuthSimple.js">JavaScript OAu
th library</a> | 191 <a href="http://unitedheroes.net/OAuthSimple/js/OAuthSimple.js">JavaScript OAu
th library</a> |
| 193 in order to simplify the process of signing OAuth requests. | 192 in order to simplify the process of signing OAuth requests. |
| 194 </p> | 193 </p> |
| 195 | 194 |
| 196 <h3 id="faq-dev-06">Can extensions load DLLs?</h3> | 195 <h3 id="faq-dev-06">Can extensions load DLLs?</h3> |
| 197 <p> | 196 <p> |
| 198 Yes, using the <a href="npapi.html">NPAPI interface</a>. | 197 Yes, using the <a href="npapi.html">NPAPI interface</a>. |
| 199 Because of the possibility for abuse, though, we will review your extension | 198 Because of the possibility for abuse, though, we will review your extension |
| 200 before hosting it in the Google Chrome Extensions Gallery | 199 before hosting it in the Chrome Web Store. |
| 201 or Chrome Web Store. | |
| 202 </p> | 200 </p> |
| 203 | 201 |
| 204 <h3 id="faq-dev-05">Can extensions create UI outside of the rendered web page?</
h3> | 202 <h3 id="faq-dev-05">Can extensions create UI outside of the rendered web page?</
h3> |
| 205 <p> | 203 <p> |
| 206 Yes, your extension may add buttons to the Chrome browser's user interface. | 204 Yes, your extension may add buttons to the Chrome browser's user interface. |
| 207 See <a href="browserAction.html">browser actions</a> and | 205 See <a href="browserAction.html">browser actions</a> and |
| 208 <a href="pageAction.html">page actions</a> for more information. | 206 <a href="pageAction.html">page actions</a> for more information. |
| 209 </p> | 207 </p> |
| 210 <p> | 208 <p> |
| 211 An extension may also create popup notifications, which exist outside of the | 209 An extension may also create popup notifications, which exist outside of the |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 discussion group</a> with a link back to your request. | 477 discussion group</a> with a link back to your request. |
| 480 </li> | 478 </li> |
| 481 <li> | 479 <li> |
| 482 If you originally reported your request on the discussion group and were | 480 If you originally reported your request on the discussion group and were |
| 483 directed to this FAQ entry, reply to your original thread with a link | 481 directed to this FAQ entry, reply to your original thread with a link |
| 484 to the ticket you starred or opened. This will make it easier for others | 482 to the ticket you starred or opened. This will make it easier for others |
| 485 with the same request to find the correct ticket. | 483 with the same request to find the correct ticket. |
| 486 </li> | 484 </li> |
| 487 </ol> | 485 </ol> |
| 488 | 486 |
| OLD | NEW |