Spoiler Blocker
Blocks spoilers on your Facebook and Twitter feed.
什么是Spoiler Blocker?
Spoiler Blocker是由spoiler.blocker.dev开发的Chrome扩展程序,该扩展的主要功能是“Blocks spoilers on your Facebook and Twitter feed.”。
扩展截图
下载Spoiler Blocker扩展crx文件
下载Spoiler Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | ehjbmpkpiidfmlcaialacajddfkpepdo |
官方URL | https://chrome.google.com/webstore/detail/spoiler-blocker/ehjbmpkpiidfmlcaialacajddfkpepdo |
简介 | Blocks spoilers on your Facebook and Twitter feed. |
文件大小 | 804 KB |
安装次数 | 33 |
当前版本 | 0.2.3 |
更新时间 | 2017-01-17 |
上架时间 | 2017-01-17 |
评分 | 1.00/5 共1次评分 |
开发者 | spoiler.blocker.dev |
付费类型 | free |
扩展官网 | http://spoilerblocker.herokuapp.com/ |
帮助页面URL | https://github.com/kabir-plod/spoiler-blocker |
支持的语言 | 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" } ] } |