Amazon-IL Free Shipping Marker

Amazon-IL Free Shipping Marker

Mark products which ship to Israel with Free Shipping with orders over $49.00 and order tracking information

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Amazon-IL Free Shipping Marker",
  "version": "0.2.2",
  "manifest_version": 2,
  "description": "Mark products which ship to Israel with Free Shipping with orders over $49.00 and order tracking information",
  "icons": {
    "16": "icons/icon16.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_title": "Amazon-IL Free Shipping Marker",
    "default_icon": "icons/icon64.png",
    "default_popup": "src/popup/popup.html"
  },
  "permissions": [
    "https://www.amazon.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*"
      ],
      "css": [
        "src/code/styles.css"
      ]
    },
    {
      "matches": [
        "https://www.amazon.com/*"
      ],
      "js": [
        "src/code/jquery.min.js",
        "src/code/scripts.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "src/shipping-icons/ups.png",
    "src/shipping-icons/dhl.png",
    "src/shipping-icons/fedex.png",
    "src/shipping-icons/aramex.png",
    "src/shipping-icons/israel-post.png",
    "src/shipping-icons/i-parcel.png"
  ]
}