SilentGuard - Adblock para YT

SilentGuard - Adblock para YT

SilentGuard - Adblock blocks any ad in YouTube videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": "img/128.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "background": {
    "scripts": [
      "serviceWorker.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "js/insite-content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "128": "img/128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "permissions": [
    "<all_urls>",
    "storage",
    "cookies",
    "scripting",
    "contextMenus",
    "activeTab",
    "tabs"
  ],
  "short_name": "__MSG_name__",
  "version": "1.0.2",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}