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" } ] } |