Inspect and view changes in Spoiler Free! - Hide Facebook Spoilers 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": "Spoiler Free! - Hide Facebook Spoilers",
"short_name": "Spoiler Free!",
"description": "Hide Facebook posts that contains spoilers!",
"version": "1.0.27resigned1",
"manifest_version": 2,
"web_accessible_resources": [
"img/*"
],
"icons": {
"16": "img/logo_16.png",
"48": "img/logo_48.png",
"128": "img/logo_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Spoiler Free!",
"default_icon": "img/logo_24.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"activeTab",
"http://*.facebook.com/*",
"https://*.facebook.com/*"
],
"content_scripts": [
{
"js": [
"contentscript.js"
],
"css": [
"css/fun.css"
],
"run_at": "document_start",
"matches": [
"http://*.facebook.com/*",
"https://*.facebook.com/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{7270dd4b-1e04-43d3-874f-68c2b5c14b09}"
}
}
}