Breathe

Relieve stress with quick, routine deep breathing. Pauses your chrome session for a few minutes with a reminder to breathe

Breathe란 무엇입니까?

Breathe은(는) http://breathe.site44.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Relieve stress with quick, routine deep breathing. Pauses your chrome session for a few minutes with a reminder to breathe"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Few of us have time for yoga or meditation, and lots of us have stress. Breathe reminds you to do many simple and short deep breathing exercises throughout the day to keep you stress-free and healthy.

Breathe temporarily pauses your current chrome tab with a reminder to breathe. You can customize each breathing session to be as short as one minute, with reminders how frequently (or infrequently) you may like.

Breathe does not track your web activity. There are no ads, no cookies, and no login requirements. Just a simple app to keep you focused and calm throughout the day.
NOTE: The permissions state that the app accesses your data on all sites. What this means is the extension has permission to overlay the reminder on any site you're on (http, https, etc). I'm far too lazy to write the code needed to steal your data :)

Breathe is in beta and may have minor bugs. Please report any to the developer. Also, if you find it useful and wish to contribute to the developer, feel free to donate on the website :)

UPDATE -- Version 1.1.1:
Now with the option of shorter, more frequent breaths!

For feedback, donations, and bug reports, please go to:
breathe.site44.com                    

확장 프로그램 기본 정보

이름 Breathe Breathe
ID ibpopdkehcdnfkjmaiimnmekhihekfja
공식 URL https://chrome.google.com/webstore/detail/breathe/ibpopdkehcdnfkjmaiimnmekhihekfja
설명 Relieve stress with quick, routine deep breathing. Pauses your chrome session for a few minutes with a reminder to breathe
파일 크기 52.78 KB
설치 횟수 801
현재 버전 1.1.1
최근 업데이트 2014-06-30
출시 날짜 2014-06-30
평점 3.44/5 총 27 개의 평점
개발자 http://breathe.site44.com
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Breathe",
    "description": "Relieve stress with quick, routine deep breathing. Pauses your chrome session for a few minutes with a reminder to breathe",
    "version": "1.1.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "alarms",
        "management",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.11.1.min.js",
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "breathe.css"
            ]
        }
    ]
}