URL Block

Block URLs

URL Block란 무엇입니까?

URL Block은(는) Eric Yang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block URLs"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Block URLs you don't want to open.

For example, you can't stop to open some webs like "facebook.com", "twitter.com" while you are working. You want to concentrate on work, but those webs are really so interesting. "URL Block" is a really good choice for you.

I have the same trouble, so I create this extension. Hope it is good for you too. 

Plz let me know if you have some trouble or advice.

My email: [email protected]                    

확장 프로그램 기본 정보

이름 URL Block URL Block
ID fdapkdfieimlngpkffldigiajemcamlb
공식 URL https://chromewebstore.google.com/detail/url-block/fdapkdfieimlngpkffldigiajemcamlb
설명 Block URLs
파일 크기 48.34 KB
설치 횟수 1,756
현재 버전 1.2.1
최근 업데이트 2024-03-04
출시 날짜 2017-11-27
평점 3.50/5 총 8 개의 평점
개발자 Eric Yang
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.2.1",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "js\/service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/urlBlock.js",
                "js\/general.js"
            ]
        }
    ],
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "action": {
        "default_icon": "image\/icon48.png",
        "default_title": "URL Block",
        "default_popup": "html\/popup.html"
    },
    "options_page": "html\/options.html",
    "default_locale": "en"
}