Chrome Locker

Restrict unauthorized access to your web accounts

什么是Chrome Locker?

Chrome Locker是由ankur1812vu开发的Chrome扩展程序,该扩展的主要功能是“Restrict unauthorized access to your web accounts”。

扩展截图

screenshot
screenshot
screenshot

下载Chrome Locker扩展crx文件

下载Chrome Locker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Install Chrome Locker to password protect your emails and social media accounts. The extension adds a lock-screen to the websites which you want to secure, and unlocks only after correct password is entered.

[ Default password is "password" ]                    

扩展基本信息

名称 Chrome Locker Chrome Locker
ID mbppjdfmgdlhakpabemcmhnckanjdjmn
官方URL https://chromewebstore.google.com/detail/chrome-locker/mbppjdfmgdlhakpabemcmhnckanjdjmn
简介 Restrict unauthorized access to your web accounts
文件大小 15.78 KB
安装次数 1,725
当前版本 1.0.3
更新时间 2022-04-11
上架时间 2022-04-04
评分 1.00/5 共2次评分
开发者 ankur1812vu
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Locker",
    "description": "Restrict unauthorized access to your web accounts",
    "version": "1.0.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background_chromelock.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "contentScript_chromelock.css"
            ],
            "js": [
                "contentScript_chromelock.js"
            ],
            "exclude_matches": []
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "options_page": "options_chromelock.html",
    "action": {
        "default_popup": "popup_chromelock.html",
        "default_icon": {
            "16": "\/images\/lock128D.png",
            "32": "\/images\/lock128D.png",
            "48": "\/images\/lock128D.png",
            "128": "\/images\/lock128D.png"
        }
    },
    "icons": {
        "16": "\/images\/lock128D.png",
        "32": "\/images\/lock128D.png",
        "48": "\/images\/lock128D.png",
        "128": "\/images\/lock128D.png"
    }
}