A browser extension that fights ad pollution
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,
"default_locale": "en",
"name": "__MSG_ExtName__",
"description": "__MSG_ExtDescription__",
"content_security_policy": "script-src 'self'; object-src 'self'",
"browser_action": {
"default_icon": "media/logo_icon_play.png",
"default_popup": "popups/index.html"
},
"homepage_url": "https://browse.live",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"all_frames": true,
"match_about_blank": true,
"js": [
"content.js"
]
},
{
"run_at": "document_start",
"matches": [
"https://blur.live/*",
"https://staging.blur.live/*",
"https://browse.live/*",
"https://staging.browse.live/*"
],
"all_frames": true,
"js": [
"browse_live_info.js"
]
}
],
"permissions": [
"tabs",
"storage",
"alarms",
"*://*/*"
],
"icons": {
"16": "media/16.png",
"48": "media/48.png",
"128": "media/128.png"
},
"web_accessible_resources": [
"consent.html",
"consent.js"
],
"version": "2.23.1122.2232",
"browser_specific_settings": {
"gecko": {
"id": "{66303505-19d0-472b-b9a2-2b3c4cae4848}"
}
}
}