Inspect and view changes in Lenta.ru Pop-up Remover source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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}"
}
}
}