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.”。

擴展截圖

screenshot

下載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 Website Locker
ID kbomichpahnfklembajcficjediaphpm
官方網址 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"
    ]
}