VKAdBlock: умная блокировка рекламы ВКонтакте

VKAdBlock: умная блокировка рекламы ВКонтакте

Боремся с надоедливой рекламой ВКонтакте по-новому ;)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "ru",
  "name": "__MSG_extName__",
  "short_name": "VKAdBlock",
  "description": "__MSG_extDescription__",
  "version": "1.7.1.2",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.vk.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_title": "__MSG_extDescription__",
    "default_icon": "icons/icon32.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}