Blurry

Blur specific parts of web pages.

Blurry란 무엇입니까?

Blurry은(는) qdevtechnolab에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blur specific parts of web pages."입니다.

확장 프로그램 스크린샷

screenshot

Blurry 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Blur Text (Ctrl + B)
Want to add a touch of mystery to your words? Simply select the text you'd like to blur and press Ctrl + B. Watch as your text transforms into an intriguing, enigmatic element.

Highlight Text (Ctrl + Y)
Sometimes, you need to make certain words shine. Select your desired text and press Ctrl + Y to give it a vibrant highlight. Your message will leap off the screen.

Reset Blur (Extension Popup)
To clear all blur effects on the current tab's webpage, simply click the "Reset Blur" button in the extension popup. Your content will regain clarity.

Reset Highlight (Extension Popup)
Click the "Reset Highlight" button in the extension popup to remove all highlight effects from the current tab. Your text will return to its original state, free from distractions.

Effortless Effect Removal (Double Click)
Don't want a specific effect? A double-click on the affected text will instantly remove it, restoring the text's natural appearance.

Bulk Effect Removal (Alt + C)
Managing multiple lines of text with various effects is a breeze. Select the text area and press Alt + C to remove all effects, ensuring your content remains crisp and clean.

Remove All Effects (Alt + R)
Need a clean slate? Press Alt + R to remove all text effects, including both blur and highlights, from your current browser window. Start fresh with a click.                    

확장 프로그램 기본 정보

이름 Blurry Blurry
ID fincjmjggckagpbloclfjhbgmoinheff
공식 URL https://chromewebstore.google.com/detail/blurry/fincjmjggckagpbloclfjhbgmoinheff
설명 Blur specific parts of web pages.
파일 크기 26.16 KB
설치 횟수 32
현재 버전 1.0
최근 업데이트 2023-09-16
출시 날짜 2023-09-14
평점 5.00/5 총 3 개의 평점
개발자 qdevtechnolab
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.qdevtechnolab.com
도움말 페이지 URL https://www.qdevtechnolab.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blurry",
    "version": "1.0",
    "description": "Blur specific parts of web pages.",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}