Amazon Review Request Automator

Amazon Review Request Automator

This extension automates the process of requesting reviews for orders on sellercentral.amazon.com

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 Review Request Automator",
  "short_name": "Auto Review",
  "version": "1.1.0",
  "description": "This extension automates the process of requesting reviews for orders on sellercentral.amazon.com",
  "icons": {
    "128": "/img/logo.png"
  },
  "browser_action": {
    "default_icon": "/img/logo.png",
    "default_popup": "/pages/popup/index.html"
  },
  "background": {
    "scripts": [
      "/lib/jquery.min.js",
      "/lib/webx.js",
      "/lib/moment.min.js",
      "/js/background/tab_info_manager.js",
      "/js/background/controller.js",
      "/js/background/main.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://sellercentral.amazon.com/*"
      ],
      "js": [
        "/lib/jquery.min.js",
        "/lib/webx.js",
        "/lib/papaparse.min.js",
        "/lib/moment.min.js",
        "/js/content_script/controller.js",
        "/js/content_script/main.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "webRequest",
    "https://sellercentral.amazon.com/*"
  ],
  "web_accessible_resources": [
    "/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://apis.google.com; object-src 'self'"
}