Amz Repricer Enhanced

Amz Repricer Enhanced

Enhance the repricer of Amazon.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1.14",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "*://*.amazon.com/*",
    "*://*.amazon.uk/*",
    "*://*.amzrepricerenhanced.com/*",
    "*://localhost/*",
    "storage",
    "background"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "browser_action": {
    "default_title": "Amazon Repricer Enhanced",
    "default_icon": {
      "16": "images/icon-16.png",
      "128": "images/icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://sellercentral.amazon.com/automatepricing/rules/*",
        "*://sellercentral.amazon.uk/automatepricing/rules/*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/jquery-ui/jquery-ui.min.js",
        "bower_components/jquery-tag-editor/jquery.caret.min.js",
        "scripts/jquery.tag-editor.js",
        "bower_components/toastr/toastr.min.js",
        "bower_components/js-xlsx/dist/xlsx.full.min.js",
        "scripts/jquery.easing.1.3.js",
        "scripts/cufon-yui.js",
        "scripts/ChunkFile_400.font.js",
        "scripts/config.js",
        "scripts/uploader.js",
        "scripts/utilities.js",
        "scripts/mp-onboarding.js",
        "scripts/automate_pricing.js"
      ],
      "css": [
        "bower_components/jquery-ui/themes/flick/jquery-ui.min.css",
        "bower_components/jquery-tag-editor/jquery.tag-editor.css",
        "bower_components/toastr/toastr.min.css",
        "styles/jquerytour.css",
        "styles/style.css",
        "styles/contentscript.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "*://sellercentral.amazon.com/inventory*",
        "*://sellercentral.amazon.uk/inventory*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/jquery-ui/jquery-ui.min.js",
        "bower_components/jquery-tag-editor/jquery.caret.min.js",
        "scripts/jquery.tag-editor.js",
        "bower_components/toastr/toastr.min.js",
        "bower_components/js-xlsx/dist/xlsx.full.min.js",
        "scripts/jquery.easing.1.3.js",
        "scripts/cufon-yui.js",
        "scripts/ChunkFile_400.font.js",
        "scripts/config.js",
        "scripts/uploader.js",
        "scripts/utilities.js",
        "scripts/mp-onboarding.js",
        "scripts/manage_pricing.js",
        "scripts/inventory.js"
      ],
      "css": [
        "bower_components/jquery-ui/themes/flick/jquery-ui.min.css",
        "bower_components/jquery-tag-editor/jquery.tag-editor.css",
        "bower_components/toastr/toastr.min.css",
        "styles/jquerytour.css",
        "styles/style.css",
        "styles/contentscript.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "*://sellercentral.amazon.com/inventory/preferences/PRICING*",
        "*://sellercentral.amazon.uk/inventory/preferences/PRICING*"
      ],
      "css": [
        "styles/preferences.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "/images/*"
  ]
}