eReader Web Tools

eReader Web Tools

Copy text, translate & more on Kindle, Kobo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.0.3",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "default_locale": "en",
  "permissions": [
    "sidePanel",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://kindle-web-app.pages.dev/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://read.amazon.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-scripts/kindle.js"
      ]
    },
    {
      "matches": [
        "*://readingservices.kobo.com/ReadNow*"
      ],
      "run_at": "document_end",
      "js": [
        "content-scripts/kobo.js"
      ]
    }
  ]
}