Amazon Link Shortener

Amazon Link Shortener

Link shortener for Amazon Products.

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 Link Shortener",
  "version": "3.5.3",
  "description": "Link shortener for Amazon Products.",
  "permissions": [
    "activeTab",
    "*.amazon.*/*",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "./background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "./popup/popup.html",
    "default_icon": {
      "16": "icons/logo16.png",
      "32": "icons/logo32.png",
      "48": "icons/logo48.png",
      "128": "icons/logo128.png"
    }
  },
  "options_page": "./options/options.html",
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "64": "icons/logo128.png",
    "128": "icons/logo128.png"
  }
}