Breathe: Website blocker

Calm and simple reminders to breathe, whenever you visit a distracting site.

What is Breathe: Website blocker?

Breathe: Website blocker is a Chrome extension developed by https://alejorivera.com, and its main feature is "Calm and simple reminders to breathe, whenever you visit a distracting site.".

Extension Screenshots

screenshot

Download Breathe: Website blocker Extension CRX File

Download Breathe: Website blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Calm and simple reminders to breathe, whenever you visit a distracting site.                    

Extension Basic Information

Name Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
Official URL https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
Description Calm and simple reminders to breathe, whenever you visit a distracting site.
File Size 71.42 KB
Installation Count 80
Current Version 0.2
Last Updated 2017-04-30
Publish Date 2017-04-30
Rating 3.00/5 Total 4 Ratings
Developer https://alejorivera.com
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Breathe: Website blocker",
    "description": "Calm and simple reminders to breathe, whenever you visit a distracting site.",
    "version": "0.2",
    "icons": {
        "128": "breathe.png"
    },
    "browser_action": {
        "default_icon": "breathe.png",
        "default_title": "Breathe",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "breathe.html"
    ]
}