ZingFilter
Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.
ZingFilterとは何ですか?
ZingFilterはZero Gravity Programmingによって開発されたChromeの拡張機能で、その主な機能は「Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.」です。
拡張機能のスクリーンショット
ZingFilter拡張機能のCRXファイルをダウンロード
ZingFilter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
ZingFilter allows you to watch filtered YouTube videos, removing unwanted foul language, extreme violence, nudity, sexuality, obscenity, and boring fluff. The extension also enables anyone to create custom filters for YouTube videos of your choice. The whole world can then enjoy watching the videos you have filtered, with their ZingFilter extension installed. Filter the world!
拡張機能の基本情報
名前 | ZingFilter |
ID | idnbpaebbbhpedgfkgjblpnmjdmkijbn |
公式URL | https://chromewebstore.google.com/detail/zingfilter/idnbpaebbbhpedgfkgjblpnmjdmkijbn |
説明 | Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content. |
ファイルサイズ | 281 KB |
インストール数 | 196 |
現在のバージョン | 2.14 |
最終更新日 | 2021-10-01 |
公開日 | 2019-08-04 |
評価 | 4.67/5 合計 9 レビュー |
開発者 | Zero Gravity Programming |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.zingfilter.us/ |
対応言語 | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "ZingFilter", "short_name": "ZingFilter", "version": "2.14", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute\/skip objectionable or boring content.", "author": "ZingFilter", "homepage_url": "https:\/\/www.zingfilter.us\/", "browser_action": { "default_icon": { "19": "images\/logo_19.png", "38": "images\/logo_38.png" }, "default_popup": "popup.html", "default_title": "ZingFilter Settings" }, "content_scripts": [ { "all_frames": false, "matches": [ "https:\/\/www.youtube.com\/*", "*:\/\/*.zingfilter.us\/*" ], "js": [ "js\/ZingFilter.js", "js\/jquery-3.1.1.min.js", "js\/encryption\/aes.js", "js\/encryption\/aes-json-format.js" ] } ], "icons": { "16": "images\/logo_16.png", "19": "images\/logo_19.png", "38": "images\/logo_38.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" }, "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "js\/background.js" ] } } |