Calm for Chrome

Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break.

Calm for Chrome란 무엇입니까?

Calm for Chrome은(는) Calm.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Calm for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Do you find yourself mindlessly checking websites and wish you did so less frequently?  Calm for Chrome will invite you to take a deep breath before letting you check a website on your “blacklist.” It doesn’t block you from doing anything but instead just makes you more mindful of what you are doing.  If you realize, after taking a deep breath, that you were mindlessly checking a site, you can, at that point, simply close the page, or alternatively, take a healthier break offered via www.calm.com.

We believe this extension will work better than a website blocker or an extension that completely blocks websites, because those types of extensions eventually becomes so annoying that we uninstall them.  

If the breath bubble is occurring too frequently for you, we offer a number of ways to adjust this extension.  You can add and remove sites from your blacklist.  You can also make the bubble occur a smaller percent of the time (e.g., if you only want an occasional mindfulness reminder), and you can set a minimum amount of time that must pass before a breath bubble is allowed to occur again (e.g., if once you start taking a break you want at least 15 minutes of time without a mindfulness reminder). 

Welcome to a calmer chrome!                    

확장 프로그램 기본 정보

이름 Calm for Chrome Calm for Chrome
ID lfkkcdgmlmoakojipfnkelpjifglmffe
공식 URL https://chromewebstore.google.com/detail/calm-for-chrome/lfkkcdgmlmoakojipfnkelpjifglmffe
설명 Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break.
파일 크기 63.65 KB
설치 횟수 20,000
현재 버전 0.0.0.2
최근 업데이트 2018-01-17
출시 날짜 2018-01-17
평점 4.52/5 총 42 개의 평점
개발자 Calm.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.calm.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Calm for Chrome",
    "description": "Stop mindless checking by taking a breath before you check! Facilitates alternative, productive ways to take a break.",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "images\/calm.png",
        "48": "images\/calm.png",
        "128": "images\/calm.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/calm.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.calm.com\/breathe\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.calm.com\/meditate\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content_meditate.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "activeTab",
        "storage",
        "background"
    ]
}