ZingFilter
Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.
Qu'est-ce que ZingFilter ?
ZingFilter est une extension Chrome développée par Zero Gravity Programming, et sa fonction principale est "Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ZingFilter
Téléchargez les fichiers d'extension ZingFilter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | ZingFilter |
ID | idnbpaebbbhpedgfkgjblpnmjdmkijbn |
URL Officiel | https://chromewebstore.google.com/detail/zingfilter/idnbpaebbbhpedgfkgjblpnmjdmkijbn |
Description | Allows you to watch filtered YouTube videos (and to create filters yourself) in order to mute/skip objectionable or boring content. |
Taille du Fichier | 281 KB |
Nombre d'Installations | 196 |
Version Actuelle | 2.14 |
Dernière Mise à Jour | 2021-10-01 |
Date de Publication | 2019-08-04 |
Évaluation | 4.67/5 Total 9 Évaluations |
Développeur | Zero Gravity Programming |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.zingfilter.us/ |
Langues Prises en Charge | 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" ] } } |