Inspect and view changes in Facebook Scroll 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": "Facebook Scroll Blocker",
"version": "1.0",
"description": "Blocks scrolling on Facebook",
"manifest_version": 3,
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.facebook.com/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}