BetterMangaReader

BetterMangaReader

Keep track of your manga, be notified of updates, and have a better reading experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BetterMangaReader",
  "version": "0.5.15",
  "manifest_version": 2,
  "description": "Keep track of your manga, be notified of updates, and have a better reading experience",
  "homepage_url": "https://github.com/JonathanWolfe/BetterMangaReader",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "page": "html/background.html",
    "persistent": true
  },
  "options_page": "html/index.html",
  "browser_action": {
    "default_icon": "icons/icon32.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.mangahere.co/*",
        "*://*.mangastream.com/*",
        "*://*.mangatown.com/*",
        "*://*.readms.com/*"
      ],
      "css": [
        "styles/pure.css",
        "styles/inject.css"
      ],
      "js": [
        "scripts/vendor/jquery.min.js",
        "scripts/html-sanitize.js",
        "scripts/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/*.png"
  ]
}