From 74c8a51b0a99d5746bb9324902ed34be8df28e24 Mon Sep 17 00:00:00 2001 From: "asargent@chromium.org" Date: Tue, 8 Sep 2009 23:33:15 +0000 Subject: Migrate information on AutoUpdate to new extensions docs. BUG=none TEST=none Review URL: http://codereview.chromium.org/195029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25681 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/extensions/docs/api_index.html | 2 +- chrome/common/extensions/docs/api_other.html | 2 +- chrome/common/extensions/docs/autoupdate.html | 472 +++++++++++++++++++++ .../common/extensions/docs/background_pages.html | 2 +- chrome/common/extensions/docs/bookmarks.html | 6 +- chrome/common/extensions/docs/content_scripts.html | 2 +- chrome/common/extensions/docs/devguide.html | 2 +- chrome/common/extensions/docs/devtools.html | 2 +- chrome/common/extensions/docs/events.html | 2 +- chrome/common/extensions/docs/extension.html | 2 +- chrome/common/extensions/docs/getstarted.html | 25 +- chrome/common/extensions/docs/index.html | 2 +- chrome/common/extensions/docs/manifest.html | 2 +- chrome/common/extensions/docs/match_patterns.html | 2 +- chrome/common/extensions/docs/npapi.html | 2 +- chrome/common/extensions/docs/overview.html | 2 +- chrome/common/extensions/docs/packaging.html | 6 +- chrome/common/extensions/docs/pageActions.html | 2 +- .../common/extensions/docs/static/autoupdate.html | 104 +++++ chrome/common/extensions/docs/tabs.html | 2 +- .../extensions/docs/template/api_template.html | 2 +- chrome/common/extensions/docs/test.html | 2 +- chrome/common/extensions/docs/themes.html | 2 +- chrome/common/extensions/docs/toolstrip.html | 2 +- chrome/common/extensions/docs/tut_debugging.html | 2 +- chrome/common/extensions/docs/tutorials.html | 2 +- chrome/common/extensions/docs/windows.html | 2 +- chrome/common/extensions/docs/xhr.html | 2 +- 28 files changed, 622 insertions(+), 37 deletions(-) create mode 100644 chrome/common/extensions/docs/autoupdate.html create mode 100644 chrome/common/extensions/docs/static/autoupdate.html (limited to 'chrome') diff --git a/chrome/common/extensions/docs/api_index.html b/chrome/common/extensions/docs/api_index.html index 274f16f..0b3ba7e 100755 --- a/chrome/common/extensions/docs/api_index.html +++ b/chrome/common/extensions/docs/api_index.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/api_other.html b/chrome/common/extensions/docs/api_other.html index 7493fa0..bbd1c16 100755 --- a/chrome/common/extensions/docs/api_other.html +++ b/chrome/common/extensions/docs/api_other.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/autoupdate.html b/chrome/common/extensions/docs/autoupdate.html new file mode 100644 index 0000000..32fd7e8 --- /dev/null +++ b/chrome/common/extensions/docs/autoupdate.html @@ -0,0 +1,472 @@ + + + + + + + AutoUpdate
    + + +
    + + +
    +
    + paramName + + + +
    + ( + optional + + + Type + + + + array of + + paramType + + + ) +
    + +
    +
    +
    + Undocumented. +
    +
    + Description of this parameter from the json schema. +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    + + + + + +
    + + + +
    + +
    +

    Contents

    +
      +
    1. + Introduction +
        +
      1. + h3Name +
      2. +
      +
    2. + Overview +
        +
      1. + Update URL +
      2. + Update Manifest +
      3. + Testing +
      4. + Advanced Usage : Request Parameters +
      5. + Advanced Usage : Minimum Browser Version +
      6. +
      +
    3. +
      +
    4. + API reference +
        +
      1. + Properties +
          +
        1. + propertyName +
        2. +
        +
      2. +
      3. + Methods +
          +
        1. + methodName +
        2. +
        +
      4. +
      5. + Events +
          +
        1. + eventName +
        2. +
        +
      6. +
      7. + Types +
          +
        1. + id +
        2. +
        +
      8. +
      +
    5. +
      +
    +
    + + + +
    AutoUpdate
    +
    true
    +

    Introduction

    +

    We want extensions to be autoupdated for some of the same reasons as chrome itself: to incorporate bug and security fixes, add new features or performance enhancements, and improve user interfaces.

    + +

    For extensions packaged and distributed via the extensions gallery, developers will be able to use a web interface to release updated versions of their extensions and do not need to concern themselves with the rest of this document.

    + +

    Those who choose to host extensions themselves instead of using the gallery will probably want to use autoupdate for their extensions as described below. You might want to make sure you are familiar with Packaging first.

    + + +

    Overview

    +
    • An extension manifest may contain an "update_url" for doing update checks.
    • +
    • 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).
    + +

    Every few hours, the browser will check if any installed extensions have an autoupdate url. For each one, it will make a request to that url looking for an update manifest xml file. If the update manifest mentions a version of an extension that is more recent than what's installed, it will download and install the new version. Similar to manual updates, the new crx must be signed with the same private key as the currently installed version.

    + + +

    Update URL

    +

    For those who are hosting their own extensions, you need to add the "update_url" key to your manifest.json file like this:

    +
    {
    +  "name": "Test Extension",
    +  "version": "1.0",
    +  "description": "My test extension",
    +  "update_url": "http://myhost.com/mytestextension/updates.xml",
    +  "toolstrips": ["mytoolstrip.html"]
    +}
    +
    + +

    Update Manifest

    +

    The "update manifest" returned by the server should be an xml document that looks like this (parts you'll want to modify highlighted):

    + +
    <?xml version='1.0' encoding='UTF-8'?>
    +<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
    +  <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'>
    +    <updatecheck codebase='http://myhost.com/mytestextension/mte_v2.crx' version='2.0' />
    +  </app>
    +</gupdate>
    +
    + +

    (This xml format is borrowed from that used by Omaha, Google's update infrastructure. See http://code.google.com/p/omaha/ for more details.)

    + +

    appid
    +The 'appid' property is the extension id, generated based on a hash of the extension's public key as described in Packaging. You can find out the id of your extension by going to chrome://extensions/ in a chrome browser where you have the extension installed.

    + +

    codebase
    +The 'codebase' property is a url to the crx file.

    + +

    version
    +This is used by the client to determine whether it should download the crx file at 'codebase'. It should match the version parameter in the crx file's manifest.json file.

    +

    The update manifest xml file may contain information about multiple extensions by including multiple <app> tags.

    + + +

    Testing

    +

    The default update check frequency is several hours, which obviously makes testing challenging. To overcome this, you can use the --extensions-update-frequency command line flag to set a more frequent interval in seconds. For instance, to make checks run every 45 seconds, you would run chrome like this:

    +
    chrome.exe --extensions-update-frequency=45
    + +

    Note that this affects checks for all installed extensions, so consider the bandwidth and server load implications of this. You may want to temporarily uninstall all but the one extension you are testing with, and should not run with this option turned on during normal browser usage. In the future we may remove this command flag and replace it with a different mechanism to trigger update checks for testing (perhaps a button on the chrome://extensions page). Star the following issue to receive updates: http://crbug.com/17853.

    + +

    Addendum: the "Update now" button has been added, and will be present in dev channel builds soon (likely 4.0.207.x and above).

    + + +

    Advanced Usage : Request Parameters

    +

    The basic autoupdate mechanism is designed to make the server-side work as easy as just dropping a static xml file onto any plain webserver such as apache, and updating that xml file as you release new versions of your extension(s).

    +

    More advanced developers may wish to take advantage of the fact that we add on parameters to the request for the update manifest to indicate the extension id and version. Then they can use the same update_url for all of their extensions pointing to a url running dynamic server side code instead of a static xml file.

    +

    The format of the request parameters is:

    +

      ?x=<extension_data>

    +

    where <extension_data> is an url-encoded string of the format:

    +

      id=<id>&v=<version>

    + +

    So for example, say we have two extensions installed

    +

      Extension 1 with id "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" and version "1.1"
    +  Extension 2 with id "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb" and version "0.4"

    + +

    and that both point at the same update_url: http://test.com/extension_updates.php

    + +

    The two requests made would be:

    +http://test.com/extension_updates.php?x=id%3Daaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa%26v%3D1.1 +
    +http://test.com/extension_updates.php?x=id%3Dbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb%26v%3D0.4 + +

    Note: in releases before 3.0.196.x there was a bug in how request parameters were put together (http://crbug.com/17469).

    + +

    Future work for Request Parameters

    +

    While not implemented yet, we will eventually list multiple extensions in a single request for each unique update_url. For the above example, the request would end up being:

    +

    http://test.com/extension_updates.php?x=id%3Daaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa%26v%3D1.1&x=id%3Dbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb%26v%3D0.4

    + +

    If the number of installed extensions using the same update_url is large enough that a GET request url would be too long (probably greater than 1024 characters or so), the update check will instead issue a POST with the request parameters in the POST body.

    + + +

    Advanced Usage : Minimum Browser Version

    +

    As we add more API's to the extensions system, it's possible you will want to release an updated version of an extension that will only work with newer versions of the chrome browser. While chrome itself is autoupdated, it can take a few days before the majority of the userbase has updated to any given new release. To ensure that a given extension update will only apply to chrome version at or higher than a specific version, you would add the prodversionmin parameter to the <app> tag in your update manifest. For example:

    + +
    <?xml version='1.0' encoding='UTF-8'?>
    +<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
    +  <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'>
    +    <updatecheck codebase='http://myhost.com/mytestextension/mte_v2.crx' version='2.0' prodversionmin='3.0.193.0'/>
    +  </app>
    +</gupdate>
    +
    + +

    This would ensure that users of this extension would only autoupdate to version 2 if they are running chrome 3.0.193.0 or greater.

    + +
    + + + +
    +
    + +
    + + diff --git a/chrome/common/extensions/docs/background_pages.html b/chrome/common/extensions/docs/background_pages.html index 5768b0fa..e6d9e9b 100755 --- a/chrome/common/extensions/docs/background_pages.html +++ b/chrome/common/extensions/docs/background_pages.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/bookmarks.html b/chrome/common/extensions/docs/bookmarks.html index 2c73035..0e2c3ee 100755 --- a/chrome/common/extensions/docs/bookmarks.html +++ b/chrome/common/extensions/docs/bookmarks.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    @@ -2446,7 +2446,7 @@ Here's some code you could use to create that hierarchy:

    -

    Fired when the children of a folder have changed their order.

    +

    Fired when the children of a folder have changed their order due to the order being sorted in the UI. This is not called as a result of a move().

    Parameters

    @@ -2986,7 +2986,7 @@ Here's some code you could use to create that hierarchy:

    -

    Fired when a bookmark or folder is removed.

    +

    Fired when a bookmark or folder is removed. When a folder is removed recursively, a single notification is fired for the folder, and none for its contents.

    Parameters

    diff --git a/chrome/common/extensions/docs/content_scripts.html b/chrome/common/extensions/docs/content_scripts.html index 15e8433..4852bde 100755 --- a/chrome/common/extensions/docs/content_scripts.html +++ b/chrome/common/extensions/docs/content_scripts.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/devguide.html b/chrome/common/extensions/docs/devguide.html index ac37fe1..c5d13cb 100755 --- a/chrome/common/extensions/docs/devguide.html +++ b/chrome/common/extensions/docs/devguide.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/devtools.html b/chrome/common/extensions/docs/devtools.html index cc8a4b7..128714c 100755 --- a/chrome/common/extensions/docs/devtools.html +++ b/chrome/common/extensions/docs/devtools.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/events.html b/chrome/common/extensions/docs/events.html index fd6c80c..b35372b 100755 --- a/chrome/common/extensions/docs/events.html +++ b/chrome/common/extensions/docs/events.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/extension.html b/chrome/common/extensions/docs/extension.html index 6409639..87015e7 100755 --- a/chrome/common/extensions/docs/extension.html +++ b/chrome/common/extensions/docs/extension.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/getstarted.html b/chrome/common/extensions/docs/getstarted.html index 90dc52d..90f3077 100755 --- a/chrome/common/extensions/docs/getstarted.html +++ b/chrome/common/extensions/docs/getstarted.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    @@ -219,19 +219,28 @@

    This tutorial walks you through creating a simple extension. -To complete this tutorial, you must have Windows. -(Linux and Mac don't yet support extensions.) +You'll add a button to Google Chrome +that, when clicked, displays an automatically generated page. +The button and page will look something like this:

    +a window with a grid of images related to HELLO WORLD +

    Get your browser ready

    To develop extensions for Google Chrome, -you'll need to subscribe +you need to subscribe to the dev channel of Google Chrome for Windows. +

    -

    Note: This tutorial requires Windows. You can try it on Linux and OS X, and it may work, but in general the extensions support is quite a bit less stable on those platforms. We're working hard to bring them up to speed. +

    +Note: This tutorial requires Windows. +You can try it on Linux and OS X, and it might work, +but the extensions support is less stable on those platforms. +We're working hard to bring them up to speed. +

    -

    Create and load an extension

    +

    Create and load an extension

    In this section, you'll write a toolstrip — an extension @@ -283,7 +292,7 @@ at the bottom of the Google Chrome window.

  • In the file dialog, - navigate to your extension's directory + navigate to your extension's folder (c:\myext, for example) and click the OK button.
  • @@ -359,7 +368,7 @@ looking something like this:

    It should look something like this:

    -a window with a grid of images related to HELLO WORLD +a window with a grid of images related to HELLO WORLD

    If you don't see that page, try the instructions again, diff --git a/chrome/common/extensions/docs/index.html b/chrome/common/extensions/docs/index.html index 76f9d92..e298e1f 100755 --- a/chrome/common/extensions/docs/index.html +++ b/chrome/common/extensions/docs/index.html @@ -111,7 +111,7 @@

  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/manifest.html b/chrome/common/extensions/docs/manifest.html index 4b5fdc5..d847a67 100755 --- a/chrome/common/extensions/docs/manifest.html +++ b/chrome/common/extensions/docs/manifest.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/match_patterns.html b/chrome/common/extensions/docs/match_patterns.html index 0945965..b81571e 100755 --- a/chrome/common/extensions/docs/match_patterns.html +++ b/chrome/common/extensions/docs/match_patterns.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/npapi.html b/chrome/common/extensions/docs/npapi.html index e127d4e..a975087 100755 --- a/chrome/common/extensions/docs/npapi.html +++ b/chrome/common/extensions/docs/npapi.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/overview.html b/chrome/common/extensions/docs/overview.html index b3c24bb..6684466 100755 --- a/chrome/common/extensions/docs/overview.html +++ b/chrome/common/extensions/docs/overview.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    diff --git a/chrome/common/extensions/docs/packaging.html b/chrome/common/extensions/docs/packaging.html index cc97dd1..e9af4d9 100755 --- a/chrome/common/extensions/docs/packaging.html +++ b/chrome/common/extensions/docs/packaging.html @@ -111,7 +111,7 @@
  • NPAPI Plugins
  • Cross-Origin XHR
  • Packaging
  • -
  • Autoupdate
  • +
  • Autoupdate
  • Tutorials
    @@ -232,7 +232,7 @@ for inclusion in the gallery.]

    To package an extension:

    1. - Bring up the Extensions page + Bring up the Extensions management page by going to this URL:
      chrome://extensions @@ -293,7 +293,7 @@ the .crx and .pem files:

    2. - Bring up the Extensions page + Bring up the Extensions management page by going to this URL: chrome://extensions
    3. diff --git a/chrome/common/extensions/docs/pageActions.html b/chrome/common/extensions/docs/pageActions.html index a7f70e4..b9dd800 100755 --- a/chrome/common/extensions/docs/pageActions.html +++ b/chrome/common/extensions/docs/pageActions.html @@ -111,7 +111,7 @@
    4. NPAPI Plugins
    5. Cross-Origin XHR
    6. Packaging
    7. -
    8. Autoupdate
    9. +
    10. Autoupdate
    11. Tutorials
      diff --git a/chrome/common/extensions/docs/static/autoupdate.html b/chrome/common/extensions/docs/static/autoupdate.html new file mode 100644 index 0000000..4e3088a --- /dev/null +++ b/chrome/common/extensions/docs/static/autoupdate.html @@ -0,0 +1,104 @@ +
      AutoUpdate
      +
      true
      +

      Introduction

      +

      We want extensions to be autoupdated for some of the same reasons as chrome itself: to incorporate bug and security fixes, add new features or performance enhancements, and improve user interfaces.

      + +

      For extensions packaged and distributed via the extensions gallery, developers will be able to use a web interface to release updated versions of their extensions and do not need to concern themselves with the rest of this document.

      + +

      Those who choose to host extensions themselves instead of using the gallery will probably want to use autoupdate for their extensions as described below. You might want to make sure you are familiar with Packaging first.

      + + +

      Overview

      +
      • An extension manifest may contain an "update_url" for doing update checks.
      • +
      • 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).
      + +

      Every few hours, the browser will check if any installed extensions have an autoupdate url. For each one, it will make a request to that url looking for an update manifest xml file. If the update manifest mentions a version of an extension that is more recent than what's installed, it will download and install the new version. Similar to manual updates, the new crx must be signed with the same private key as the currently installed version.

      + + +

      Update URL

      +

      For those who are hosting their own extensions, you need to add the "update_url" key to your manifest.json file like this:

      +
      {
      +  "name": "Test Extension",
      +  "version": "1.0",
      +  "description": "My test extension",
      +  "update_url": "http://myhost.com/mytestextension/updates.xml",
      +  "toolstrips": ["mytoolstrip.html"]
      +}
      +
      + +

      Update Manifest

      +

      The "update manifest" returned by the server should be an xml document that looks like this (parts you'll want to modify highlighted):

      + +
      +<?xml version='1.0' encoding='UTF-8'?>
      +<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
      +  <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'>
      +    <updatecheck codebase='http://myhost.com/mytestextension/mte_v2.crx' version='2.0' />
      +  </app>
      +</gupdate>
      +
      + +

      (This xml format is borrowed from that used by Omaha, Google's update infrastructure. See http://code.google.com/p/omaha/ for more details.)

      + +

      appid
      +The 'appid' property is the extension id, generated based on a hash of the extension's public key as described in Packaging. You can find out the id of your extension by going to chrome://extensions/ in a chrome browser where you have the extension installed.

      + +

      codebase
      +The 'codebase' property is a url to the crx file.

      + +

      version
      +This is used by the client to determine whether it should download the crx file at 'codebase'. It should match the version parameter in the crx file's manifest.json file.

      +

      The update manifest xml file may contain information about multiple extensions by including multiple <app> tags.

      + + +

      Testing

      +

      The default update check frequency is several hours, which obviously makes testing challenging. To overcome this, you can use the --extensions-update-frequency command line flag to set a more frequent interval in seconds. For instance, to make checks run every 45 seconds, you would run chrome like this:

      +
      +chrome.exe --extensions-update-frequency=45
      + +

      Note that this affects checks for all installed extensions, so consider the bandwidth and server load implications of this. You may want to temporarily uninstall all but the one extension you are testing with, and should not run with this option turned on during normal browser usage. In the future we may remove this command flag and replace it with a different mechanism to trigger update checks for testing (perhaps a button on the chrome://extensions page). Star the following issue to receive updates: http://crbug.com/17853.

      + +

      Addendum: the "Update now" button has been added, and will be present in dev channel builds soon (likely 4.0.207.x and above).

      + + +

      Advanced Usage : Request Parameters

      +

      The basic autoupdate mechanism is designed to make the server-side work as easy as just dropping a static xml file onto any plain webserver such as apache, and updating that xml file as you release new versions of your extension(s).

      +

      More advanced developers may wish to take advantage of the fact that we add on parameters to the request for the update manifest to indicate the extension id and version. Then they can use the same update_url for all of their extensions pointing to a url running dynamic server side code instead of a static xml file.

      +

      The format of the request parameters is:

      +

        ?x=<extension_data>

      +

      where <extension_data> is an url-encoded string of the format:

      +

        id=<id>&v=<version>

      + +

      So for example, say we have two extensions installed

      +

        Extension 1 with id "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" and version "1.1"
      +  Extension 2 with id "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb" and version "0.4"

      + +

      and that both point at the same update_url: http://test.com/extension_updates.php

      + +

      The two requests made would be:

      +http://test.com/extension_updates.php?x=id%3Daaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa%26v%3D1.1 +
      +http://test.com/extension_updates.php?x=id%3Dbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb%26v%3D0.4 + +

      Note: in releases before 3.0.196.x there was a bug in how request parameters were put together (http://crbug.com/17469).

      + +

      Future work for Request Parameters

      +

      While not implemented yet, we will eventually list multiple extensions in a single request for each unique update_url. For the above example, the request would end up being:

      +

      http://test.com/extension_updates.php?x=id%3Daaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa%26v%3D1.1&x=id%3Dbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb%26v%3D0.4

      + +

      If the number of installed extensions using the same update_url is large enough that a GET request url would be too long (probably greater than 1024 characters or so), the update check will instead issue a POST with the request parameters in the POST body.

      + + +

      Advanced Usage : Minimum Browser Version

      +

      As we add more API's to the extensions system, it's possible you will want to release an updated version of an extension that will only work with newer versions of the chrome browser. While chrome itself is autoupdated, it can take a few days before the majority of the userbase has updated to any given new release. To ensure that a given extension update will only apply to chrome version at or higher than a specific version, you would add the prodversionmin parameter to the <app> tag in your update manifest. For example:

      + +
      <?xml version='1.0' encoding='UTF-8'?>
      +<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
      +  <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'>
      +    <updatecheck codebase='http://myhost.com/mytestextension/mte_v2.crx' version='2.0' prodversionmin='3.0.193.0'/>
      +  </app>
      +</gupdate>
      +
      + +

      This would ensure that users of this extension would only autoupdate to version 2 if they are running chrome 3.0.193.0 or greater.

      + diff --git a/chrome/common/extensions/docs/tabs.html b/chrome/common/extensions/docs/tabs.html index fceb19f..8df4213 100755 --- a/chrome/common/extensions/docs/tabs.html +++ b/chrome/common/extensions/docs/tabs.html @@ -111,7 +111,7 @@
    12. NPAPI Plugins
    13. Cross-Origin XHR
    14. Packaging
    15. -
    16. Autoupdate
    17. +
    18. Autoupdate
    19. Tutorials
      diff --git a/chrome/common/extensions/docs/template/api_template.html b/chrome/common/extensions/docs/template/api_template.html index f11ebb5..90b92d0 100755 --- a/chrome/common/extensions/docs/template/api_template.html +++ b/chrome/common/extensions/docs/template/api_template.html @@ -96,7 +96,7 @@
    20. NPAPI Plugins
    21. Cross-Origin XHR
    22. Packaging
    23. -
    24. Autoupdate
    25. +
    26. Autoupdate
    27. Tutorials
      diff --git a/chrome/common/extensions/docs/test.html b/chrome/common/extensions/docs/test.html index 1d98338..19af114 100755 --- a/chrome/common/extensions/docs/test.html +++ b/chrome/common/extensions/docs/test.html @@ -111,7 +111,7 @@
    28. NPAPI Plugins
    29. Cross-Origin XHR
    30. Packaging
    31. -
    32. Autoupdate
    33. +
    34. Autoupdate
    35. Tutorials
      diff --git a/chrome/common/extensions/docs/themes.html b/chrome/common/extensions/docs/themes.html index d968e25..3890e0d 100755 --- a/chrome/common/extensions/docs/themes.html +++ b/chrome/common/extensions/docs/themes.html @@ -111,7 +111,7 @@
    36. NPAPI Plugins
    37. Cross-Origin XHR
    38. Packaging
    39. -
    40. Autoupdate
    41. +
    42. Autoupdate
    43. Tutorials
      diff --git a/chrome/common/extensions/docs/toolstrip.html b/chrome/common/extensions/docs/toolstrip.html index 6343312..7ff4173 100755 --- a/chrome/common/extensions/docs/toolstrip.html +++ b/chrome/common/extensions/docs/toolstrip.html @@ -111,7 +111,7 @@
    44. NPAPI Plugins
    45. Cross-Origin XHR
    46. Packaging
    47. -
    48. Autoupdate
    49. +
    50. Autoupdate
    51. Tutorials
      diff --git a/chrome/common/extensions/docs/tut_debugging.html b/chrome/common/extensions/docs/tut_debugging.html index b321213..a8f0e6c 100755 --- a/chrome/common/extensions/docs/tut_debugging.html +++ b/chrome/common/extensions/docs/tut_debugging.html @@ -111,7 +111,7 @@
    52. NPAPI Plugins
    53. Cross-Origin XHR
    54. Packaging
    55. -
    56. Autoupdate
    57. +
    58. Autoupdate
    59. Tutorials
      diff --git a/chrome/common/extensions/docs/tutorials.html b/chrome/common/extensions/docs/tutorials.html index 2998c9b..7c912ca 100755 --- a/chrome/common/extensions/docs/tutorials.html +++ b/chrome/common/extensions/docs/tutorials.html @@ -111,7 +111,7 @@
    60. NPAPI Plugins
    61. Cross-Origin XHR
    62. Packaging
    63. -
    64. Autoupdate
    65. +
    66. Autoupdate
    67. Tutorials
      diff --git a/chrome/common/extensions/docs/windows.html b/chrome/common/extensions/docs/windows.html index e9dd856..98a7672 100755 --- a/chrome/common/extensions/docs/windows.html +++ b/chrome/common/extensions/docs/windows.html @@ -111,7 +111,7 @@
    68. NPAPI Plugins
    69. Cross-Origin XHR
    70. Packaging
    71. -
    72. Autoupdate
    73. +
    74. Autoupdate
    75. Tutorials
      diff --git a/chrome/common/extensions/docs/xhr.html b/chrome/common/extensions/docs/xhr.html index 1a91a35..07feea5 100755 --- a/chrome/common/extensions/docs/xhr.html +++ b/chrome/common/extensions/docs/xhr.html @@ -111,7 +111,7 @@
    76. NPAPI Plugins
    77. Cross-Origin XHR
    78. Packaging
    79. -
    80. Autoupdate
    81. +
    82. Autoupdate
    83. Tutorials
      -- cgit v1.1