Profit Print

Profit Print

Checke Amazon Product Selling Permission

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Profit Print",
  "version": "2.3",
  "description": "Checke Amazon Product Selling Permission",
  "manifest_version": 2,
  "incognito": "split",
  "icons": {
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "persistent": true,
    "page": "background/background.html"
  },
  "web_accessible_resources": [
    "theme/*",
    "scripts/*.css",
    "images/*",
    "icons/*",
    "scripts/printing/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.amazon.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://sellercentral.amazon.com/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/permissions/loginStatusCheck.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.amazon.com/gp/offer-listing/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/permissions/styleRules.js",
        "scripts/permissions/checkOnOfferPage.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.amazon.com/gp/search/*",
        "*://*.amazon.com/s/*",
        "*://*.amazon.com/s?*"
      ],
      "all_frames": true,
      "js": [
        "scripts/permissions/styleRules.js",
        "scripts/permissions/checkOnSearchPage.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.amazon.com/*/dp/*",
        "*://*.amazon.com/dp/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/permissions/styleRules.js",
        "scripts/permissions/checkOnProductPage.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.accelerlist.com/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/permissions/checkOnBatch.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.amazon.com/gp/fba/inbound-shipment-workflow/index.html*",
        "*://*.amazon.com/gp/ssof/print-item-labels.html*"
      ],
      "all_frames": true,
      "js": [
        "scripts/printings/pdf.js",
        "scripts/printings/pdfWorker.js",
        "scripts/printings/pdfPrinting.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "cookies",
    "storage",
    "notifications",
    "*://*.amazon.com/*",
    "*://167.99.59.200/*",
    "*://157.245.214.201/*",
    "unlimitedStorage",
    "webRequest"
  ]
}