Whatsapp Content Block

Allows you to block media in WhatsApp web to avoid NSFW content.

What is Whatsapp Content Block?

Whatsapp Content Block is a Chrome extension developed by a.c.abascal, and its main feature is "Allows you to block media in WhatsApp web to avoid NSFW content.".

Extension Screenshots

screenshot

Download Whatsapp Content Block Extension CRX File

Download Whatsapp Content Block extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Whatsapp Content Block Whatsapp Content Block
ID hanebcnmkcfpohdjbecoijdcmfkdngok
Official URL https://chrome.google.com/webstore/detail/whatsapp-content-block/hanebcnmkcfpohdjbecoijdcmfkdngok
Description Allows you to block media in WhatsApp web to avoid NSFW content.
File Size 48.27 KB
Installation Count 117
Current Version 1.0.3
Last Updated 2021-01-25
Publish Date 2019-11-30
Rating 5.00/5 Total 1 Ratings
Developer a.c.abascal
Email [email protected]
Payment Type free
Supported Languages 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
    }
}