Inspect and view changes in Adblock for Facebook 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Adblock for Facebook",
"version": "1.0.5",
"description": "Detect and auto close Facebook sponsored ads post",
"permissions": [
"storage"
],
"icons": {
"32": "icons/32.png",
"128": "icons/logo.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.facebook.com/*"
],
"js": [
"content_fb.js"
],
"run_at": "document_start"
},
{
"js": [
"kodepayContent.js"
],
"matches": [
"https://kodepay.io/*"
],
"run_at": "document_start"
}
],
"action": {
"default_icon": {
"128": "icons/logo.png"
},
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"price.html",
"price.js",
"price.json",
"icons/*",
"js/fb_inject.js",
"popup.js",
"kodepayContent.js"
],
"matches": [
"*://*/*"
]
}
]
}