Amazon delivery check

Amazon delivery check

This addon checks if Amazon delivers to your country, from the search page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon delivery check",
  "version": "0.2.5",
  "description": "This addon checks if Amazon delivers to your country, from the search page.",
  "icons": {
    "48": "icons/icon-48.png"
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/s/*",
        "*://*/search/*",
        "*://*/gp/aw/s/*"
      ],
      "include_globs": [
        "*://www.amazon.*/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "scanResults.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "applications": {
    "gecko": {
      "id": "@amazon-delivercheck-addon"
    }
  }
}