Lenta.ru Pop-up Remover

Lenta.ru Pop-up Remover

Removes the fresh news pop-up and generally restores the site to its original state (without some extra 'info' at the header)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Lenta.ru Pop-up & Top Banner Remover",
  "description": "Remove fresh news pop-up & top banner",
  "version": "1.1.3",
  "author": "Mnsrff",
  "homepage_url": "https://github.com/Mnsrff",
  "icons": {
    "48": "icon.png"
  },
  "browser_action": {
    "default_title": "Lenta.ru Pop-up & Top Banner Remover",
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "theme_icons": [
      {
        "light": "icon.png",
        "dark": "icon.png",
        "size": 48
      }
    ]
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "https://www.lenta.ru/*",
    "*://*.lenta.ru/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.lenta.ru/*"
      ],
      "js": [
        "remover.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d17ff539-1771-4029-b29f-e25f0f994435}"
    }
  }
}