HaramBlur

Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.

Τι είναι το HaramBlur;

Το HaramBlur είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://haramblur.com, και η κύρια λειτουργία του είναι "Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης HaramBlur

Λήψη αρχείων επέκτασης HaramBlur σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A free, open-source extension to help you avoid "Haram" and NSFW content and uphold the Islamic gaze protection principle by customizing your online experience. 😊.

HaramBlur utilizes Machine Learning to detect "Haram" content in images and videos, automatically blurring them to keep your browsing experience distraction-free and as "Halal" as possible. 
You can easily configure the detection type,  blur intensity, strictness level, toggle the extension on or off, and even unblur content through the interactive pop-up, and yes, it works on videos too!😄

If you like the project and that it's free, please consider supporting me:
https://www.buymeacoffee.com/alganzory 💖
			
Don't forget to follow us on twitter to get updates about the project and share the word: https://twitter.com/HaramBlur 🔥

Needless to say, this extension does not track your browsing history at all, all the processing is done on your browser, in fact, the code is open source so your contributions are welcome: https://github.com/alganzory/HaramBlur                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HaramBlur HaramBlur
ID pbcoegikffnadpahojjhgdladmmddeji
Επίσημο URL https://chromewebstore.google.com/detail/haramblur/pbcoegikffnadpahojjhgdladmmddeji
Περιγραφή Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.
Μέγεθος Αρχείου 24.14 MB
Αριθμός Εγκαταστάσεων 6,215
Τρέχουσα Έκδοση 0.2.3
Τελευταία Ενημέρωση 2024-02-26
Ημερομηνία Δημοσίευσης 2023-10-10
Αξιολόγηση 4.85/5 Συνολικά 178 Αξιολογήσεις
Προγραμματιστής https://haramblur.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/alganzory/HaramBlur/
Διεύθυνση URL της Σελίδας Βοήθειας https://forms.gle/mDDjh44MKRVemWX86
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HaramBlur",
    "description": "Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.",
    "version": "0.2.3",
    "permissions": [
        "storage",
        "offscreen",
        "contextMenus"
    ],
    "author": "[email protected]",
    "action": {
        "default_title": "HaramBlur",
        "default_popup": "src\/popup.html"
    },
    "minimum_chrome_version": "109",
    "background": {
        "service_worker": "src\/background.js"
    },
    "icons": {
        "48": "src\/assets\/hb-icon-48.png",
        "128": "src\/assets\/hb-icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "dist\/content.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/assets\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}