Consistency

Consistency helps you to build your habits by blocking websites you don't want to visit.

O que é Consistency?

Consistency é uma extensão do Chrome desenvolvida por Patrik Gallik, e sua principal característica é "Consistency helps you to build your habits by blocking websites you don't want to visit.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Consistency

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

                        We all have more productive and fulfilling stuff to do than visiting websites that steal our focus and time.

Break those bad habits with Consistency.

Inspired by James Clear's book Atomic Habits, words from the book appear when you get tempted to visit a page you've previously blocked.

List of blocked websites is synced to your Google account (if available), so you can use Consistency in your mobile Chrome as well.

Consistency does not track anything, you can check out the source code here: https://github.com/patresk/consistency

Changelog:
0.3 - Added timer functionality                    

Informações Básicas da Extensão

Nome Consistency Consistency
ID lnlkeagaboibogkmlokbhmjhdglokgdn
URL Oficial https://chromewebstore.google.com/detail/consistency/lnlkeagaboibogkmlokbhmjhdglokgdn
Descrição Consistency helps you to build your habits by blocking websites you don't want to visit.
Tamanho do Arquivo 61.57 KB
Contagem de Instalações 18
Versão Atual 0.3
Última Atualização 2020-09-02
Data de Publicação 2020-04-11
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Patrik Gallik
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/patresk/consistency
URL da Página de Ajuda https://github.com/patresk/consistency/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Consistency",
    "version": "0.3",
    "permissions": [
        "storage"
    ],
    "description": "Consistency helps you to build your habits by blocking websites you don't want to visit.",
    "options_page": "options.html",
    "page_action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "nono.html",
        "nono.js",
        "images\/logo.png",
        "lib\/moment.min.js"
    ],
    "manifest_version": 2
}