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によって開発されたChromeの拡張機能で、その主な機能は「Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.」です。
拡張機能のスクリーンショット
Website Locker拡張機能のCRXファイルをダウンロード
Website Locker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" ] } |