Hide Youtube Likes/Dislikes

Hide Youtube Likes/Dislikes

Hides ratings information on Youtube videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Youtube Likes/Dislikes",
  "version": "1.0.2",
  "description": "Hides ratings information on Youtube videos.",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "jquery.js",
        "arrive.js",
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/ico_16.png",
      "32": "images/ico_32.png",
      "48": "images/ico_48.png",
      "128": "images/ico_128.png"
    }
  },
  "icons": {
    "16": "images/ico_16.png",
    "32": "images/ico_32.png",
    "48": "images/ico_48.png",
    "128": "images/ico_128.png"
  }
}