Breathe: Website blocker

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

Breathe: Website blocker là gì?

Breathe: Website blocker là một tiện ích mở rộng Chrome được phát triển bởi https://alejorivera.com, và tính năng chính của nó là "Calm and simple reminders to breathe, whenever you visit a distracting site.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Breathe: Website blocker

Tải xuống các tệp mở rộng Breathe: Website blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
URL Chính Thức https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
Mô tả Calm and simple reminders to breathe, whenever you visit a distracting site.
Kích Thước Tệp 71.42 KB
Số Lần Cài Đặt 80
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2017-04-30
Ngày Phát Hành 2017-04-30
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://alejorivera.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}