SOA Extension

SOA Extension

SOA Extension supports sellers easily manage their products with five useful functions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SOA Extension ",
  "version": "1.1.36",
  "manifest_version": 2,
  "description": "SOA Extension supports sellers easily manage their products with five useful functions",
  "browser_action": {
    "default_icon": "img/logo-main.png"
  },
  "icons": {
    "16": "img/logo-main.png",
    "48": "img/logo-main.png",
    "128": "img/logo-main.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/chromep.js",
        "js/jquery-3.2.1.min.js",
        "js/const.js",
        "libs/typo/typo.js",
        "js/bootstrap.min.js",
        "js/helper.js",
        "js/content.js"
      ],
      "css": [
        "css/bootstrap.min.css",
        "libs/font-awesome/css/font-awesome.css",
        "css/content.css"
      ],
      "run_at": "document_end",
      "matches": [
        "https://www.amazon.com/*",
        "https://www.amazon.co.uk/*",
        "https://www.amazon.ca/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "cookies",
    "activeTab",
    "background",
    "management",
    "*://*.amazon.com/*",
    "*://*.amazon.co.uk/*",
    "*://*.amazon.ca/*",
    "*://*.trademarkia.com/*",
    "*://*.soaextension.com/*"
  ],
  "background": {
    "scripts": [
      "js/chromep.js",
      "js/const.js",
      "js/background.js"
    ]
  },
  "web_accessible_resources": [
    "img/logo.png",
    "img/logo-main.png",
    "img/loading.gif",
    "libs/typo/dictionaries/en_US/*",
    "libs/font-awesome/fonts/*"
  ],
  "incognito": "split"
}