Consistency

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

Consistency क्या है?

Consistency Patrik Gallik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Consistency helps you to build your habits by blocking websites you don't want to visit."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Consistency एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Consistency Consistency
ID lnlkeagaboibogkmlokbhmjhdglokgdn
आधिकारिक URL https://chromewebstore.google.com/detail/consistency/lnlkeagaboibogkmlokbhmjhdglokgdn
विवरण Consistency helps you to build your habits by blocking websites you don't want to visit.
फ़ाइल का आकार 61.57 KB
स्थापना संख्या 18
वर्तमान संस्करण 0.3
अंतिम अपडेट 2020-09-02
प्रकाशन तिथि 2020-04-11
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Patrik Gallik
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/patresk/consistency
सहायता पृष्ठ URL https://github.com/patresk/consistency/issues
समर्थित भाषाएँ 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
}