Website Locker

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

Vad är Website Locker?

Website Locker är en Chrome-tillägg utvecklad av calebgeizer, och dess huvudfunktion är "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".

Tilläggsskärmbilder

screenshot

Ladda ner Website Locker-förlängningens CRX-fil

Ladda ner Website Locker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Website Locker Website Locker
ID kbomichpahnfklembajcficjediaphpm
Officiell webbadress https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm
Beskrivning Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Filstorlek 8.1 KB
Antal Installationer 1,119
Aktuell Version 0.1.0
Senast Uppdaterad 2022-04-07
Publiceringsdatum 2019-05-03
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare calebgeizer
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://calebgeizer.com/
Stödda Språk 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"
    ]
}