Breathe: Website blocker

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

什么是Breathe: Website blocker?

Breathe: Website blocker是由https://alejorivera.com开发的Chrome扩展程序,该扩展的主要功能是“Calm and simple reminders to breathe, whenever you visit a distracting site.”。

扩展截图

screenshot

下载Breathe: Website blocker扩展crx文件

下载Breathe: Website blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
官方URL https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
简介 Calm and simple reminders to breathe, whenever you visit a distracting site.
文件大小 71.42 KB
安装次数 80
当前版本 0.2
更新时间 2017-04-30
上架时间 2017-04-30
评分 3.00/5 共4次评分
开发者 https://alejorivera.com
付费类型 free
支持的语言 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"
    ]
}