Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Was ist Website Locker?
Website Locker ist eine Chrome-Erweiterung, die von calebgeizer entwickelt wurde, und ihr Hauptmerkmal ist "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".
Erweiterungsscreenshots
Website Locker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Website Locker-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
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.
Grundlegende Informationen zur Erweiterung
Name | Website Locker |
ID | kbomichpahnfklembajcficjediaphpm |
Offizielle URL | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
Beschreibung | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
Dateigröße | 8.1 KB |
Installationsanzahl | 1,119 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2022-04-07 |
Veröffentlichungsdatum | 2019-05-03 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | calebgeizer |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://calebgeizer.com/ |
Unterstützte Sprachen | 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" ] } |