AnimeTake Watcher

AnimeTake Watcher

A simple extension that highlights favorited shows on AnimeTake

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AnimeTake Watcher",
  "description": "A simple extension that highlights favorited shows on AnimeTake",
  "version": "1.0",
  "background": {
    "scripts": [
      "./js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.animetake.com/*"
      ],
      "js": [
        "./js/jquery-2.0.3.min.js",
        "./js/json.js",
        "./js/jstorage.js",
        "./js/content.js"
      ]
    }
  ],
  "page_action": {
    "default_title": "AnimeTake Watcher",
    "default_icon": "img/at.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "img/yoko.png"
  }
}