WaitBlock

Setup wait period for time-wasting sites.

O que é WaitBlock?

WaitBlock é uma extensão do Chrome desenvolvida por https://mscavnicky.com, e sua principal característica é "Setup wait period for time-wasting sites.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão WaitBlock

Baixe arquivos de extensão WaitBlock 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

                        WaitBlock allows you to setup wait period for time-wasting sites. Upon visiting a blocked website, you will be presented with a countdown you need to wait out.

This turns the dopamine-induced sensation you get when opening Facebook, into boring and borderline frustrating experience. After a while, you will no longer be subconsciously opening it again.

You also get a beautiful picture every day, which will remind you of the life out there.                    

Informações Básicas da Extensão

Nome WaitBlock WaitBlock
ID kcnjfeppclpdinikcljfjigoongebpkh
URL Oficial https://chromewebstore.google.com/detail/waitblock/kcnjfeppclpdinikcljfjigoongebpkh
Descrição Setup wait period for time-wasting sites.
Tamanho do Arquivo 38.04 KB
Contagem de Instalações 1,049
Versão Atual 1.5.1
Última Atualização 2020-11-23
Data de Publicação 2020-04-24
Classificação 4.85/5 Total de 27 Avaliações
Desenvolvedor https://mscavnicky.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WaitBlock",
    "description": "Setup wait period for time-wasting sites.",
    "version": "1.5.1",
    "minimum_chrome_version": "40",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "img\/icon.png"
    },
    "browser_action": {
        "default_icon": "img\/icon.png"
    },
    "web_accessible_resources": [
        "index.html"
    ],
    "background": {
        "scripts": [
            "js\/underscore-1.8.3.min.js",
            "js\/waitblock.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/waitblock.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}