Netflix Blur
Blur graphic content while watching Netflix TV Shows and Movies.
Netflix Blurとは何ですか?
Netflix Blurはdutiyeshによって開発されたChromeの拡張機能で、その主な機能は「Blur graphic content while watching Netflix TV Shows and Movies.」です。
拡張機能のスクリーンショット
Netflix Blur拡張機能のCRXファイルをダウンロード
Netflix Blur拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Netflix Blur is a chrome extension to blur graphic content while watching Netflix TV Shows and Movies. How to use? - Blur content by pressing Blur button from Player control icons or by pressing Keyboard B key.
拡張機能の基本情報
名前 | Netflix Blur |
ID | aohjdecagmjlmhdbfibpifiogieheoim |
公式URL | https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim |
説明 | Blur graphic content while watching Netflix TV Shows and Movies. |
ファイルサイズ | 14.26 KB |
インストール数 | 20 |
現在のバージョン | 1.1.0 |
最終更新日 | 2022-12-22 |
公開日 | 2021-01-24 |
開発者 | dutiyesh |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/dutiyesh/netflix-blur |
プライバシーポリシーページのURL | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Netflix Blur", "version": "1.1.0", "description": "Blur graphic content while watching Netflix TV Shows and Movies.", "icons": { "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/www.netflix.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] } ] } |