Breathe

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

Vad är Breathe?

Breathe är en Chrome-tillägg utvecklad av http://breathe.site44.com, och dess huvudfunktion är "Relieve stress with quick, routine deep breathing. Pauses your chrome session for a few minutes with a reminder to breathe".

Tilläggsskärmbilder

screenshot

Ladda ner Breathe-förlängningens CRX-fil

Ladda ner Breathe-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Breathe Breathe
ID ibpopdkehcdnfkjmaiimnmekhihekfja
Officiell webbadress https://chrome.google.com/webstore/detail/breathe/ibpopdkehcdnfkjmaiimnmekhihekfja
Beskrivning Relieve stress with quick, routine deep breathing. Pauses your chrome session for a few minutes with a reminder to breathe
Filstorlek 52.78 KB
Antal Installationer 801
Aktuell Version 1.1.1
Senast Uppdaterad 2014-06-30
Publiceringsdatum 2014-06-30
Betyg 3.44/5 Totalt 27 Betyg
Utvecklare http://breathe.site44.com
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}