MangaDex helpers

MangaDex helpers

Useful helper features for MangaDex. More features coming in the future if I have time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MangaDex helpers",
  "description": "Useful helper features for MangaDex. More features coming in the future if I have time.",
  "version": "1.1",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mangadex.org/titles*",
        "https://mangadex.org/search*"
      ],
      "js": [
        "helpers.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon128.png",
    "default_title": "MangaDex helpers"
  }
}