Spoiler Blocker
Blocks spoilers on your Facebook and Twitter feed.
What is Spoiler Blocker?
Spoiler Blocker is a Chrome extension developed by spoiler.blocker.dev, and its main feature is "Blocks spoilers on your Facebook and Twitter feed.".
Extension Screenshots
Download Spoiler Blocker Extension CRX File
Download Spoiler Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Say goodbye to spoilers ruining your favourite TV show or movie. The Spoiler Blocker extension hides posts containing keywords for shows you're watching. Block 'em all * Define lists of keywords, and posts containing any of these keywords will be hidden * Choose whether you want to overlay posts with a white panel or remove them completely * Deactivate lists if already you've finished watching the latest episode Share with others * Visit http://spoilerblocker.herokuapp.com/ to share lists with others * Use download IDs from the website to efficiently get lists into your extension
Extension Basic Information
Name | |
ID | ehjbmpkpiidfmlcaialacajddfkpepdo |
Official URL | https://chrome.google.com/webstore/detail/spoiler-blocker/ehjbmpkpiidfmlcaialacajddfkpepdo |
Description | Blocks spoilers on your Facebook and Twitter feed. |
File Size | 804 KB |
Installation Count | 33 |
Current Version | 0.2.3 |
Last Updated | 2017-01-17 |
Publish Date | 2017-01-17 |
Rating | 1.00/5 Total 1 Ratings |
Developer | spoiler.blocker.dev |
Payment Type | free |
Extension Website | http://spoilerblocker.herokuapp.com/ |
Help Page URL | https://github.com/kabir-plod/spoiler-blocker |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiler Blocker", "description": "Blocks spoilers on your Facebook and Twitter feed.", "version": "0.2.3", "browser_action": { "default_title": "Spoiler Blocker", "default_icon": { "16": "img\/icon16.png", "32": "img\/icon32.png" }, "default_popup": "panel.html" }, "options_ui": { "page": "options.html" }, "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png" }, "permissions": [ "activeTab", "storage", "https:\/\/spoilerblocker.herokuapp.com\/downloadList\/*" ], "background": { "page": "bg.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/facebook.com\/*" ], "js": [ "fb.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/twitter.com\/*" ], "js": [ "tw.js" ], "run_at": "document_start" } ] } |