Consistency

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

Cos'è Consistency?

Consistency è un'estensione di Chrome sviluppata da Patrik Gallik, e la sua funzione principale è "Consistency helps you to build your habits by blocking websites you don't want to visit.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Consistency

Scarica i file di estensione Consistency in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Consistency Consistency
ID lnlkeagaboibogkmlokbhmjhdglokgdn
URL Ufficiale https://chromewebstore.google.com/detail/consistency/lnlkeagaboibogkmlokbhmjhdglokgdn
Descrizione Consistency helps you to build your habits by blocking websites you don't want to visit.
Dimensione del File 61.57 KB
Conteggio Installazioni 18
Versione Corrente 0.3
Ultimo Aggiornamento 2020-09-02
Data di Pubblicazione 2020-04-11
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Patrik Gallik
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/patresk/consistency
URL della Pagina di Aiuto https://github.com/patresk/consistency/issues
Lingue Supportate 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
}