Spoiler Block
This extension will black out divs based on specific keywords
Spoiler Blockとは何ですか?
Spoiler Blockはmillionhariによって開発されたChromeの拡張機能で、その主な機能は「This extension will black out divs based on specific keywords」です。
拡張機能のスクリーンショット
Spoiler Block拡張機能のCRXファイルをダウンロード
Spoiler Block拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Browse the internet free of spoilers! The Spoiler Block extension will censor any keyword match with a black blob instead of blocking the whole page. Click the Spoiler Block icon to get started. Upcoming features: - Community driven packages - Anagram block What's new in v.1.0.2 - Fixed bug to run script when page is altered in any way
拡張機能の基本情報
名前 | Spoiler Block |
ID | eicnikdpfimhiogckamkklnpligkifhm |
公式URL | https://chromewebstore.google.com/detail/spoiler-block/eicnikdpfimhiogckamkklnpligkifhm |
説明 | This extension will black out divs based on specific keywords |
ファイルサイズ | 15.07 KB |
インストール数 | 290 |
現在のバージョン | 1.0.2 |
最終更新日 | 2016-05-07 |
公開日 | 2016-05-06 |
評価 | 3.50/5 合計 2 レビュー |
開発者 | millionhari |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Michael Hari", "name": "Spoiler Block", "description": "This extension will black out divs based on specific keywords", "version": "1.0.2", "permissions": [ "storage", "tabs" ], "options_page": "\/options\/spoiler_block_options.html", "background": { "scripts": [ "\/backgroundpage\/background.js" ] }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Spoiler Block" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "\/styles\/style.css" ], "js": [ "\/scripts\/app.js" ] } ] } |