Kindle Books Manager

Kindle Books Manager

A Chrome extension to manage your kindle books easily likes any file manager. - Visit Amazon webbsite - Go to "Manage Your Content…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kindle Books Manager",
  "version": "0.0.2",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.cn/mn/dcw/myx.html/*",
        "https://www.amazon.co.jp/mn/dcw/myx.html/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "app.js"
  ],
  "applications": {
    "gecko": {
      "strict_min_version": "53.0"
    }
  }
}