URL Shortener for Amazon

URL Shortener for Amazon

Converts Amazon URLs into a shortened form and copies them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "URL Shortener for Amazon",
  "description": "__MSG_extensionDescription__",
  "version": "1.2.2",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "clipboardWrite"
  ],
  "icons": {
    "16": "assets/icon/icon_16.png",
    "48": "assets/icon/icon_48.png",
    "128": "assets/icon/icon_128.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content.ts-loader-3xXndp0S.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "options_ui": {
    "page": "src/views/options.html"
  },
  "action": {
    "default_icon": {
      "16": "assets/icon/icon_16.png",
      "48": "assets/icon/icon_48.png",
      "128": "assets/icon/icon_128.png"
    },
    "default_title": "URL Shortener for Amazon",
    "default_popup": "src/views/popup.html"
  },
  "commands": {
    "Url": {
      "description": "__MSG_commandCreateUrl__"
    },
    "TitleWithUrl": {
      "description": "__MSG_commandCreateTitleWithUrl__"
    },
    "Title": {
      "description": "__MSG_commandCreateTitle__"
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "assets/CommandConfig-CmYsybs1.js",
        "assets/content.ts-BQRemzqZ.js"
      ],
      "use_dynamic_url": true
    }
  ]
}