Tahir

Avoid haram images & videos on the Internet.

Was ist Tahir?

Tahir ist eine Chrome-Erweiterung, die von Fusha Technologies entwickelt wurde, und ihr Hauptmerkmal ist "Avoid haram images & videos on the Internet.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Tahir-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tahir-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        As modesty standards have deteriorated, it has become impossible to avoid impermissible images when browsing the web. Tahir (def: "to purify") chrome extension is your shield. Automatically blur out images & videos on each website you visit to prevent accidentally seeing anything impermissible. If there is an image/video you would like to see, temporarily turn Tahir off by pressing "Alt+L" or hover your mouse over an image & press "Alt+K" to selectively reveal. You can also permanently whitelist safe websites. 

----- Privacy Policy -----
This extension does not track any of your browsing history, whatsoever. All of our code is open source & transparent, see here: https://github.com/fushatech/tahir

----- Support -----
For any questions, bugs, or comments, please contact us at [email protected].                    

Grundlegende Informationen zur Erweiterung

Name Tahir Tahir
ID ihmoammkfbdpokfiiifajdkfglmfejca
Offizielle URL https://chromewebstore.google.com/detail/tahir/ihmoammkfbdpokfiiifajdkfglmfejca
Beschreibung Avoid haram images & videos on the Internet.
Dateigröße 16.08 KB
Installationsanzahl 2,389
Aktuelle Version 1.0.5
Letztes Update 2020-06-07
Veröffentlichungsdatum 2020-06-07
Bewertung 4.76/5 Insgesamt 79 Bewertungen
Entwickler Fusha Technologies
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tahir",
    "description": "Avoid haram images & videos on the Internet.",
    "version": "1.0.5",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "browser_action": {
        "default_title": "Tahir",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "assets\/img\/icon128.png"
    },
    "commands": {
        "reverse_status": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Reverse blur state"
        },
        "toggle_selected": {
            "suggested_key": {
                "default": "Alt+K"
            },
            "description": "Unblur\/reblur selected image"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tab.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2
}