dr. Hider

dr. Hider

With this extension you can create blacklist of communities, comments to whose posts would be removed from vk.com news feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "0.1",
  "omnibox": {
    "keyword": "Dr.Hider"
  },
  "icons": {
    "16": "16-full-color.png"
  },
  "description": "__MSG_extensionDescription__",
  "page_action": {
    "default_title": "dr. Hider",
    "default_popup": "/popup/popup.html",
    "js": [
      "/popup/popup.js"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://vk.com/*",
        "*://new.vk.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "default_locale": "en",
  "permissions": [
    "*://vk.com/*",
    "activeTab",
    "declarativeContent",
    "storage",
    "tabs"
  ]
}