KDP Autofill

KDP Autofill

KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "KDP Autofill",
  "description": "KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.",
  "version": "2.0.0.4",
  "host_permissions": [
    "https://kdp.amazon.com/*",
    "https://autofill.mercherworld.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://kdp.amazon.com/en_US/title-setup/paperback/*/details*"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/details.min.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://kdp.amazon.com/en_US/title-setup/paperback/*/pricing*"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/pricing.min.js"
      ]
    },
    {
      "matches": [
        "https://kdp.amazon.com/en_US/title-setup/paperback/*/content*"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/content.min.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "icons": {
    "128": "img/icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  }
}