Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Qu'est-ce que Website Locker ?
Website Locker est une extension Chrome développée par calebgeizer, et sa fonction principale est "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Website Locker
Téléchargez les fichiers d'extension Website Locker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Website Locker |
ID | kbomichpahnfklembajcficjediaphpm |
URL Officiel | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
Description | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
Taille du Fichier | 8.1 KB |
Nombre d'Installations | 1,119 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2022-04-07 |
Date de Publication | 2019-05-03 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | calebgeizer |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://calebgeizer.com/ |
Langues Prises en Charge | 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" ] } |