Chill - Site Blocking, Improved

Never again waste time browsing sites when you don't have a reason to!

Chill - Site Blocking, Improved란 무엇입니까?

Chill - Site Blocking, Improved은(는) cirex-web에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Never again waste time browsing sites when you don't have a reason to!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Chill - Site Blocking, Improved 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        What's new in 1.4.0
- Major performance improvement: The extension no longer hogs your CPU and drains your battery quickly. :D
- Service worker failed registration bug has been fixed.

______

Want to stop mindlessly browsing and spending hours upon hours on websites that bring little value into your life?

The solution that people usually turn to is a site blocker, but what if you need to use the site occasionally? Sure, you could temporarily turn the block off, but then what are the chances that you'll turn it back on again?

With Chill, no site is permanently blocked. You can still get access to these sites... only if you have a reason. To get access to a blocked site, Chill allows you to send a request (with a reason) to your future self, with the amount of wait time proportional to the amount of time you've requested to spend on the site. This pause gives you time to stop and reflect, leaving behind your impulses and turning back to rational thought. 

Ideas? Suggestions? Email [email protected]                    

확장 프로그램 기본 정보

이름 Chill - Site Blocking, Improved Chill - Site Blocking, Improved
ID gmaemaiippninkfcpfofbeopgijdbmid
공식 URL https://chromewebstore.google.com/detail/chill-site-blocking-impro/gmaemaiippninkfcpfofbeopgijdbmid
설명 Never again waste time browsing sites when you don't have a reason to!
파일 크기 365 KB
설치 횟수 233
현재 버전 1.4.0
최근 업데이트 2021-12-07
출시 날짜 2021-10-14
평점 5.00/5 총 6 개의 평점
개발자 cirex-web
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chill - Site Blocking, Improved",
    "description": "Never again waste time browsing sites when you don't have a reason to!",
    "version": "1.4.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "index.html?popup=true"
    },
    "content_scripts": [
        {
            "js": [
                "external\/jquery.js",
                "backend\/scripts\/page-script.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "48": "assets\/48.png",
        "128": "assets\/icon128.png"
    }
}