Amazon & KDP Title Analyzer - tag creator

Amazon & KDP Title Analyzer - tag creator

SEO Tool for Analyzing Words in Amazon Products Titles and Subtitle with Easy Checks in Google Trends

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "0.0.3",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://amazon.com/*"
  ],
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*",
        "https://*.amazon.co.uk/*",
        "https://*.amazon.ca/*",
        "https://*.amazon.nd/*",
        "https://*.amazon.de/*"
      ],
      "js": [
        "src/pages/contentInjected/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}