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"
    ]
}