PawBlock

Block websites to prevent procrastination and excessive web surfing.

什么是PawBlock?

PawBlock是由https://dannyguo.com开发的Chrome扩展程序,该扩展的主要功能是“Block websites to prevent procrastination and excessive web surfing.”。

扩展截图

screenshot
screenshot
screenshot

下载PawBlock扩展crx文件

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

扩展使用说明

                        Block distracting sites with PawBlock when you need to get something done first.

Configure a blacklist of websites, and when you try to visit one, PawBlock will stop you and encourage you to get back to what you were doing.                    

扩展基本信息

名称 PawBlock PawBlock
ID jngmmiaolbliepfphdnelgfcclpnkoja
官方URL https://chromewebstore.google.com/detail/pawblock/jngmmiaolbliepfphdnelgfcclpnkoja
简介 Block websites to prevent procrastination and excessive web surfing.
文件大小 948 KB
安装次数 1,201
当前版本 0.5.1
更新时间 2022-12-26
上架时间 2018-05-28
评分 4.71/5 共7次评分
开发者 https://dannyguo.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://pawblock.dannyguo.com
帮助页面URL https://github.com/dguo/pawblock/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PawBlock",
    "version": "0.5.1",
    "description": "Block websites to prevent procrastination and excessive web surfing.",
    "applications": {
        "gecko": {
            "id": "@pawblock"
        }
    },
    "icons": {
        "16": "images\/icon-16-on.png",
        "32": "images\/icon-32-on.png",
        "48": "images\/icon-48-on.png",
        "128": "images\/icon-128-on.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16-on.png",
            "32": "images\/icon-32-on.png",
            "48": "images\/icon-48-on.png",
            "128": "images\/icon-128-on.png"
        },
        "default_title": "PawBlock",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "browser_style": false,
        "chrome_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "downloads",
        "storage",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "block.html"
    ]
}