Productivity Pigeon

Block sites simply!

Productivity Pigeon là gì?

Productivity Pigeon là một tiện ích mở rộng Chrome được phát triển bởi a9, và tính năng chính của nó là "Block sites simply!".

Ả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 Productivity Pigeon

Tải xuống các tệp mở rộng Productivity Pigeon 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

                        Block sites simply! An open source site blocker to keep your productivity up and block distracting sites.

Keyboard shortcuts available. Ctrl/Cmd-Shift-X to toggle. Others can be customized.

Source available here: https://github.com/maxkrieger/productivity-pigeon                    

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

Tên Productivity Pigeon Productivity Pigeon
ID doiacekollomjlchgjcfnimkepajgoem
URL Chính Thức https://chromewebstore.google.com/detail/productivity-pigeon/doiacekollomjlchgjcfnimkepajgoem
Mô tả Block sites simply!
Kích Thước Tệp 133 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2018-06-11
Ngày Phát Hành 2018-06-11
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển a9
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/maxkrieger/productivity-pigeon
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Productivity Pigeon",
        "default_popup": "popup.html"
    },
    "commands": {
        "blocking_on": {
            "description": "Turn blocking of the sites ON"
        },
        "blocking_off": {
            "description": "Turn blocking of the sites OFF"
        },
        "blocking_toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Toggle if sites are blocked"
        }
    },
    "web_accessible_resources": [
        "blocked.html",
        "images\/*.png",
        "fonts\/*"
    ]
}