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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
            ]
        }
    ]
}