Crunchyroll: continue watching bar

Crunchyroll: continue watching bar

Removes the advertising from the Crunchyroll website and provides a quick access bar at the top of each page showing any new…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Crunchyroll: continue watching bar",
  "version": "1.0",
  "browser_action": {
    "default_icon": {
      "16": "ico/16.png",
      "32": "ico/32.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.crunchyroll.com/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}