Zebra Stop

Позволяет вам блокировать комментарии Вани-сами-знаете-кого на лентачах
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zebra Stop",
  "description": "Позволяет вам блокировать комментарии Вани-сами-знаете-кого на лентачах",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": "zebra-128.png",
    "default_title": "Zebra Stop is turned off"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "128": "zebra-crossed-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://vk.com/true_lentach*",
        "*://vk.com/feed*",
        "*://vk.com/wall*",
        "*://vk.com/oldlentach*",
        "*://m.vk.com/true_lentach*",
        "*://m.vk.com/feed*",
        "*://m.vk.com/wall*",
        "*://m.vk.com/oldlentach*",
        "*://0.vk.com/true_lentach*",
        "*://0.vk.com/feed*",
        "*://0.vk.com/wall*",
        "*://0.vk.com/oldlentach*"
      ],
      "js": [
        "zeb_inject.js"
      ]
    }
  ]
}