Inspect and view changes in Blacklist Source Plugin 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
{
"name": "Blacklist Source Plugin",
"version": "1.3.6resigned1",
"manifest_version": 2,
"description": "Extension marks information portal as a Trash Source based on the blacklist provided by http://boloto.in.ua",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"options_ui": {
"page": "options/options.html",
"chrome_style": true
},
"permissions": [
"activeTab",
"storage",
"alarms",
"*://boloto.in.ua/*"
],
"minimum_chrome_version": "6.0.0.0",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"web_accessible_resources": [
"trash.jpg",
"trash_icon.png",
"options/options.html",
"options/options.js"
],
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "{859a212d-229e-412a-a2af-85fd154ec7f5}"
}
}
}