Image Blur Extension

A Chrome extension to blur images on web pages

Image Blur Extension란 무엇입니까?

Image Blur Extension은(는) manojsilag에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to blur images on web pages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Image Blur Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you concerned about your online privacy and tired of images on websites invading your personal space? Introducing Image Blur, your ultimate solution for taking control of your online visual experience.

Image Blur seamlessly integrates with your Chrome browser to blur all images on the websites you visit. Whether you're on social media, news sites, or any other platform

We understand that everyone has different preferences. That's why Image Blur allows you to customize the blur intensity. Choose the level of blur that suits your comfort level, from subtle to complete obscurity.

You're in control. Easily toggle the extension on and off with a single click. When you want to enjoy high-resolution images, simply turn off Image Blur, and when you're concerned, turn it back on.                    

확장 프로그램 기본 정보

이름 Image Blur Extension Image Blur Extension
ID njjgcapodcfiiofppomncilmenhgdmmc
공식 URL https://chromewebstore.google.com/detail/image-blur-extension/njjgcapodcfiiofppomncilmenhgdmmc
설명 A Chrome extension to blur images on web pages
파일 크기 42.1 KB
설치 횟수 78
현재 버전 1.0
최근 업데이트 2023-10-08
출시 날짜 2023-10-08
평점 5.00/5 총 1 개의 평점
개발자 manojsilag
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://manojsilag.github.io/image_blur_website/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Image Blur Extension",
    "version": "1.0",
    "description": "A Chrome extension to blur images on web pages",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "options.html",
        "default_icon": {
            "16": "icon.png",
            "48": "icon.png",
            "128": "icon.png"
        },
        "default_title": "Image Blur Extension"
    }
}