BlurPage

Blur any elements or paragraphs on page

BlurPage란 무엇입니까?

BlurPage은(는) https://blur.page에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blur any elements or paragraphs on page"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Have you ever wanted to hide sensitive information on a web page, before doing something else, such as taking a screenshot?

This extension is for you! It allows you to blur any element or paragraph on page without leaving your browser.                    

확장 프로그램 기본 정보

이름 BlurPage BlurPage
ID fdpibkbokddlcpdgkgicamkapmkjcghp
공식 URL https://chromewebstore.google.com/detail/blurpage/fdpibkbokddlcpdgkgicamkapmkjcghp
설명 Blur any elements or paragraphs on page
파일 크기 26.36 KB
설치 횟수 623
현재 버전 1.0.1
최근 업데이트 2019-05-18
출시 날짜 2019-05-14
평점 3.60/5 총 5 개의 평점
개발자 https://blur.page
이메일 [email protected]
결제 유형 in_app
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BlurPage",
    "description": "Blur any elements or paragraphs on page",
    "author": "Phuoc Nguyen",
    "version": "1.0.1",
    "homepage_url": "https:\/\/blur.page",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/blur.js",
                "js\/content.js"
            ],
            "css": [
                "css\/blur.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "24": "images\/icon-24.png",
            "48": "images\/icon-48.png",
            "96": "images\/icon-96.png",
            "512": "images\/icon-512.png"
        },
        "default_title": "Choose elements to blur"
    },
    "icons": {
        "24": "images\/icon-24.png",
        "48": "images\/icon-48.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ]
}