Don't let the internet spoil your TV! Block headlines, tweets, facebook posts and everything with Unspoiler.
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",
"name": "Unspoiler",
"version": "2.2.0",
"manifest_version": 2,
"description": "Don't let the internet spoil your TV! Block headlines, tweets, facebook posts and everything with Unspoiler.",
"homepage_url": "http://www.unspoiler.tv/",
"omnibox": {
"keyword": "unspoil"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"background": {
"persistent": false,
"scripts": [
"common.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery.js",
"unspoiler.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"background",
"storage",
"http://*/*",
"https://*/*"
]
}