Inspect and view changes in GIF Blocker 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": "GIF Blocker",
"description": "Block GIF images from being loaded on HTML pages to reduce bandwidth and resource usage",
"version": "0.1.2",
"manifest_version": 2,
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"activeTab",
"*://*/*",
"contextMenus"
],
"homepage_url": "https://add0n.com/gif-blocker.html",
"background": {
"scripts": [
"common.js"
]
},
"web_accessible_resources": [
"/data/block.svg"
],
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png",
"256": "data/icons/256.png"
},
"browser_action": {
"default_title": "GIF Blocker (disabled)"
},
"options_ui": {
"page": "data/options/index.html",
"chrome_style": true
}
}