Lock My Chrome

Lock My Chrome

Lock my chrome, need password when open chrome with the profile which enabled this extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lock My Chrome",
  "description": "Lock my chrome, need password when open chrome with the profile which enabled this extension.",
  "version": "1.0.0",
  "manifest_version": 3,
  "author": "[email protected]",
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "action": {
    "default_title": "About"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs",
    "idle"
  ]
}