Website Locker

Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.

Website Locker क्या है?

Website Locker calebgeizer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time."।

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

screenshot

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

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

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

                        Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. Pick between a whitelist or blacklist, a blacklist locks the websites listed while a whitelist locks every website but the ones listed. Then type in the websites you want locked/unlocked and put in the amount of unlocked time.                    

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

नाम Website Locker Website Locker
ID kbomichpahnfklembajcficjediaphpm
आधिकारिक URL https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm
विवरण Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
फ़ाइल का आकार 8.1 KB
स्थापना संख्या 1,119
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2022-04-07
प्रकाशन तिथि 2019-05-03
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर calebgeizer
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://calebgeizer.com/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Locker",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.",
    "homepage_url": "https:\/\/github.com\/calebgeizer",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Unlock\/Lock",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}