PawBlock

Block websites to prevent procrastination and excessive web surfing.

O que é PawBlock?

PawBlock é uma extensão do Chrome desenvolvida por https://dannyguo.com, e sua principal característica é "Block websites to prevent procrastination and excessive web surfing.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PawBlock

Baixe arquivos de extensão PawBlock no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PawBlock PawBlock
ID jngmmiaolbliepfphdnelgfcclpnkoja
URL Oficial https://chromewebstore.google.com/detail/pawblock/jngmmiaolbliepfphdnelgfcclpnkoja
Descrição Block websites to prevent procrastination and excessive web surfing.
Tamanho do Arquivo 948 KB
Contagem de Instalações 1,201
Versão Atual 0.5.1
Última Atualização 2022-12-26
Data de Publicação 2018-05-28
Classificação 4.71/5 Total de 7 Avaliações
Desenvolvedor https://dannyguo.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://pawblock.dannyguo.com
URL da Página de Ajuda https://github.com/dguo/pawblock/issues
Idiomas Suportados 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"
    ]
}