Consistency

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

Was ist Consistency?

Consistency ist eine Chrome-Erweiterung, die von Patrik Gallik entwickelt wurde, und ihr Hauptmerkmal ist "Consistency helps you to build your habits by blocking websites you don't want to visit.".

Erweiterungsscreenshots

screenshot
screenshot

Consistency-Erweiterungs-CRX-Datei herunterladen

Laden Sie Consistency-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Consistency Consistency
ID lnlkeagaboibogkmlokbhmjhdglokgdn
Offizielle URL https://chromewebstore.google.com/detail/consistency/lnlkeagaboibogkmlokbhmjhdglokgdn
Beschreibung Consistency helps you to build your habits by blocking websites you don't want to visit.
Dateigröße 61.57 KB
Installationsanzahl 18
Aktuelle Version 0.3
Letztes Update 2020-09-02
Veröffentlichungsdatum 2020-04-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Patrik Gallik
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/patresk/consistency
Hilfeseite URL https://github.com/patresk/consistency/issues
Unterstützte Sprachen 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
}