OLD | NEW |
1 <div id="pageData-name" class="pageData">Autoupdating</div> | 1 <div id="pageData-name" class="pageData">Autoupdating</div> |
2 <div id="pageData-showTOC" class="pageData">true</div> | 2 <div id="pageData-showTOC" class="pageData">true</div> |
3 | 3 |
4 <p>We want extensions to be autoupdated for some of the same reasons as Google C
hrome itself: to incorporate bug and security fixes, add new features or perform
ance enhancements, and improve user interfaces.</p> | 4 <p>We want extensions to be autoupdated for some of the same reasons as Google C
hrome itself: to incorporate bug and security fixes, add new features or perform
ance enhancements, and improve user interfaces.</p> |
5 | 5 |
6 <p>If you distribute your extension using the <a href="https://chrome.google.com
/extensions">gallery</a>, you can <em>ignore this page</em>. You can use a web i
nterface to release updated versions of your extension.</p> | 6 <p>If you publish your extension using the <a href="https://chrome.google.com/we
bstore/developer/dashboard">Chrome Developer Dashboard</a>, you can <em>ignore t
his page</em>. You can use the dashboard to release updated versions of your ext
ension to users, as well as to the Extensions Gallery or Chrome Web Store.</p> |
7 | 7 |
8 <p>If you want to host your extension somewhere other than the gallery, keep rea
ding. | 8 <p>If you want to host your extension somewhere other than the gallery or store,
keep reading. |
9 You should also read <a href="hosting.html">Hosting</a> and | 9 You should also read <a href="hosting.html">Hosting</a> and |
10 <a href="packaging.html">Packaging</a>.</p> | 10 <a href="packaging.html">Packaging</a>.</p> |
11 | 11 |
12 | 12 |
13 <h2>Overview</h2> | 13 <h2>Overview</h2> |
14 <ul><li>An extension manifest may contain an "update_url" for doing update check
s.</li> | 14 <ul><li>An extension manifest may contain an "update_url" for doing update check
s.</li> |
15 <li>The content returned by an update check is an "update manifest" XML document
listing the latest version of an extension (or set of extensions, more on that
later).</li></ul> | 15 <li>The content returned by an update check is an "update manifest" XML document
listing the latest version of an extension (or set of extensions, more on that
later).</li></ul> |
16 | 16 |
17 <p>Every few hours, the browser will check if any installed extensions have an a
utoupdate URL. For each one, it will make a request to that URL looking for an u
pdate manifest XML file. If the update manifest mentions a version of an extensi
on that is more recent than what's installed, it will download and install the n
ew version. Similar to manual updates, the new crx must be signed with the same
private key as the currently installed version.</p> | 17 <p>Every few hours, the browser will check if any installed extensions have an a
utoupdate URL. For each one, it will make a request to that URL looking for an u
pdate manifest XML file. If the update manifest mentions a version of an extensi
on that is more recent than what's installed, it will download and install the n
ew version. Similar to manual updates, the new crx must be signed with the same
private key as the currently installed version.</p> |
18 | 18 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 <pre><?xml version='1.0' encoding='UTF-8'?> | 101 <pre><?xml version='1.0' encoding='UTF-8'?> |
102 <gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'> | 102 <gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'> |
103 <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'> | 103 <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'> |
104 <updatecheck codebase='http://myhost.com/mytestextens
ion/mte_v2.crx' version='2.0' <b>prodversionmin='3.0.193.0'</b>/> | 104 <updatecheck codebase='http://myhost.com/mytestextens
ion/mte_v2.crx' version='2.0' <b>prodversionmin='3.0.193.0'</b>/> |
105 </app> | 105 </app> |
106 </gupdate> | 106 </gupdate> |
107 </pre> | 107 </pre> |
108 | 108 |
109 <p>This would ensure that users of this extension would autoupdate to version 2
only if they are running Google Chrome 3.0.193.0 or greater.</p> | 109 <p>This would ensure that users of this extension would autoupdate to version 2
only if they are running Google Chrome 3.0.193.0 or greater.</p> |
110 | 110 |
OLD | NEW |