Section Blocker

Section Blocker

It pull's you out from the youtube world to the real world.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Section Blocker",
  "version": "1.4.19",
  "manifest_version": 2,
  "description": "It pull's you out from the youtube world to the real world.",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "64": "tagImage.png"
  },
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "tagImage.png",
    "default_title": "Section Blocker"
  },
  "background": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch?v=*"
      ],
      "js": [
        "jquery.min.js"
      ]
    }
  ]
}