YouSkip

YouSkip

Skip YouTube ads. (Sorry YouTube)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouSkip",
  "version": "1.1",
  "description": "Skip YouTube ads. (Sorry YouTube)",
  "permissions": [
    "activeTab",
    "storage",
    "https://felisphasma.com/projects/YouSkip/count.php"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch?*",
        "https://youtube.com/watch?*"
      ],
      "all_frames": true,
      "js": [
        "app.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "16.png",
      "24": "24.png",
      "32": "32.png",
      "64": "64.png",
      "128": "128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "16.png",
    "24": "24.png",
    "32": "32.png",
    "64": "64.png",
    "128": "128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "manifest_version": 2
}