Spoiled
Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.
Spoiledとは何ですか?
SpoiledはLucas Roweによって開発されたChromeの拡張機能で、その主な機能は「Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.」です。
拡張機能のスクリーンショット
Spoiled拡張機能のCRXファイルをダウンロード
Spoiled拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With this unobtrusive and lightweight spoiler blocker users enter custom phrases to block anything from TV spoilers to celebrity click-bait. Spoiled will scan pages for entered phrases and hide any content using those phrases, including nearby images. Features * Block any phrase * Block images nearby detected phrases * Works on any website, including Facebook, Twitter, and other social networks * No registration or social network logins required * No user data collection of any kind * Allows regular expressions * Snooze to temporarily allow spoilers * Open source Limitations This is still in development and is done as a side project. It is meant to be lightweight so coverage is likely less than some proprietary plugins. The goal is that it will run better and provide more control than the heavyweight plugins. Also note that this cannot protect you from mobile spoilers so keep your guard up. This is an open source extension created by a passionate spoiler hater. If you'd like to contribute or roll your own, please feel free to fork me on Github: https://github.com/lucasrowe/spoiled
拡張機能の基本情報
名前 | |
ID | ofgoaiodajmkpocgdkjlokhhbpeodnci |
公式URL | https://chrome.google.com/webstore/detail/spoiled/ofgoaiodajmkpocgdkjlokhhbpeodnci |
説明 | Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs. |
ファイルサイズ | 34.13 KB |
インストール数 | 315 |
現在のバージョン | 1.1.2 |
最終更新日 | 2020-07-16 |
公開日 | 2016-08-18 |
評価 | 4.60/5 合計 10 レビュー |
開発者 | Lucas Rowe |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://lucasrowe.github.io/spoiled |
ヘルプページのURL | https://github.com/lucasrowe/spoiled/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiled", "description": "Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.", "version": "1.1.2", "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "spoiler_style.css" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "icon.png", "128": "icon.png" }, "permissions": [ "declarativeContent", "activeTab", "storage", "https:\/\/ajax.googleapis.com\/" ] } |