Henry's Dislike Buttonator

Henry's Dislike Buttonator

We're bringing back the dislike button! Written by hand with the help of StackOverflow here and there and some jQuery. More…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Henry's Dislike Buttonator",
  "version": "0.1",
  "icons": {
    "16": "icon16.jpg",
    "48": "icon48.jpg",
    "128": "icon128.jpg"
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ]
}