HaramBlur

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

什麼是HaramBlur?

HaramBlur是由https://haramblur.com開發的Chrome擴展程式,該擴展的主要功能是“Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載HaramBlur擴展crx文件

下載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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}