Whatsapp Content Block
Allows you to block media in WhatsApp web to avoid NSFW content.
Qu'est-ce que Whatsapp Content Block ?
Whatsapp Content Block est une extension Chrome développée par a.c.abascal, et sa fonction principale est "Allows you to block media in WhatsApp web to avoid NSFW content.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Whatsapp Content Block
Téléchargez les fichiers d'extension Whatsapp Content Block 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
This extension add a friendly show button in every media content on whatsapp web. That allow to the user show and hide the content when ever it want. Avoiding NSFW content. Note: Whatsapp web changes its css classes from time to time and the extension stops working. I try to keep it always up to date :) GitHub https://github.com/tonicabanas/whatsapp-content-block
Informations de Base sur l'Extension
Nom | |
ID | hanebcnmkcfpohdjbecoijdcmfkdngok |
URL Officiel | https://chrome.google.com/webstore/detail/whatsapp-content-block/hanebcnmkcfpohdjbecoijdcmfkdngok |
Description | Allows you to block media in WhatsApp web to avoid NSFW content. |
Taille du Fichier | 48.27 KB |
Nombre d'Installations | 117 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2021-01-25 |
Date de Publication | 2019-11-30 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | a.c.abascal |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Whatsapp Content Block", "version": "1.0.3", "description": "Allows you to block media in WhatsApp web to avoid NSFW content.", "manifest_version": 2, "permissions": [ "https:\/\/web.whatsapp.com\/", "declarativeContent", "storage", "webNavigation" ], "content_scripts": [ { "matches": [ "https:\/\/*.whatsapp.com\/" ], "css": [ "css\/main.css" ], "js": [ "js\/main.js" ], "run_at": "document_start" } ], "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_icon": "assets\/icons\/icon16.png" }, "background": { "scripts": [ "js\/menu.js" ], "persistent": false } } |