Manga Reader

Manga Reader

This add-on redesigns and adds new features to the beast manga websites, you can also save manga/manhwa/manhua. and if the saved manga gas a new chapter it will show it to you in the new chapters tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Manga Reader",
  "version": "5.0.1",
  "description": "This add-on redesigns and adds new features to the beast manga websites, you can also save manga/manhwa/manhua.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "/dependencies/jquery.min.js",
        "/dependencies/cheerio.js",
        "Main/other/functions.js",
        "/dependencies/create.js",
        "websites/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "websites/style.css"
  ],
  "background": {
    "page": "background/background.html",
    "persistent": false
  },
  "icons": {
    "512": "/icon2.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "512": "/icon.svg"
    },
    "default_title": "Manga Reader",
    "default_popup": "Main/main.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "*://developer.mozilla.org/*",
    "clipboardWrite",
    "clipboardRead",
    "webRequest",
    "activeTab",
    "https://fonts.googleapis.com/",
    "<all_urls>",
    "webNavigation",
    "https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js",
    "https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js",
    "https://cdnjs.cloudflare.com/ajax/libs/cheerio/1.0.0/cheerio.min.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{68f502b7-1d5f-46d3-9f23-097c02731db2}"
    }
  }
}