Spoiler Preventer
Avoid colliding with spoilers
Spoiler Preventerとは何ですか?
Spoiler PreventerはCycle & Carriageによって開発されたChromeの拡張機能で、その主な機能は「Avoid colliding with spoilers」です。
拡張機能のスクリーンショット
Spoiler Preventer拡張機能のCRXファイルをダウンロード
Spoiler Preventer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Introducing Spoiler Preventer, a browser extension that actively blocks out potential spoilers to your favourite television series or movie. Simply turn this on, and you will never encounter another spoiler accidentally again. 拡張機能の基本情報
| 名前 | |
| ID | phncefdjfiecennngpkplhakjeneahai |
| 公式URL | https://chromewebstore.google.com/detail/spoiler-preventer/phncefdjfiecennngpkplhakjeneahai |
| 説明 | Avoid colliding with spoilers |
| ファイルサイズ | 3.51 MB |
| インストール数 | 13 |
| 現在のバージョン | 0.6 |
| 最終更新日 | 2019-07-06 |
| 公開日 | 2019-07-05 |
| 評価 | 4.00/5 合計 4 レビュー |
| 開発者 | Cycle & Carriage |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Spoiler Preventer",
"short_name": "SpoilerPreventer",
"description": "Avoid colliding with spoilers",
"version": "0.6",
"author": "Naveen: BBDO Singapore",
"homepage_url": "https:\/\/www.cyclecarriage.com\/",
"offline_enabled": true,
"browser_action": {
"default_icon": {
"19": "images\/mz-logo-19x19.png",
"38": "images\/mz-logo-38x38.png",
"48": "images\/mz-logo-48x48.png",
"128": "images\/mz-logo-128x128.png"
},
"default_title": "Spoiler Preventer",
"default_popup": "index.html"
},
"icons": {
"19": "images\/mz-logo-19x19.png",
"38": "images\/mz-logo-38x38.png",
"48": "images\/mz-logo-48x48.png",
"128": "images\/mz-logo-128x128.png"
},
"permissions": [
"activeTab",
"background",
"storage",
"tabs"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*:\/\/*.google.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.twitter.com\/*",
"*:\/\/*.youtube.com\/*"
],
"css": [
"css\/blocker-style.css"
],
"js": [
"js\/jquery-3.0.0.min.js",
"js\/blocking.js"
]
}
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
} | |