Stream Locker

Stream Locker

Block annoying popups and load streaming sites videos in the lightweight native HTML5 player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "minimum_chrome_version": "58.0.3029.81",
  "browser_action": {
    "default_title": "Stream Locker",
    "default_popup": "src/popup/popup.html"
  },
  "name": "Stream Locker",
  "author": "Marco Bonelli",
  "icons": {
    "16": "resources/images/icons/16.png",
    "19": "resources/images/icons/19.png",
    "38": "resources/images/icons/38.png",
    "64": "resources/images/icons/64.png",
    "128": "resources/images/icons/128.png"
  },
  "background": {
    "scripts": [
      "src/scripts/my_log.js",
      "src/scripts/background.js"
    ]
  },
  "options_ui": {
    "page": "src/options/options.html",
    "open_in_tab": true
  },
  "homepage_url": "https://github.com/mebeim/stream-locker",
  "version": "1.1.1",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webNavigation",
    "<all_urls>"
  ],
  "description": "Block annoying popups and load streaming sites videos in the lightweight native HTML5 player."
}