Everykey Chrome

Everykey Chrome

Everykey unlocks your devices and logs you into websites when you're around, then locks it all back down when you're not.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Everykey Chrome",
  "version": "3.15.0",
  "version_name": "3.15.0",
  "description": "Everykey unlocks your devices and logs you into websites when you're around, then locks it all back down when you're not.",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/browser-action-icon-dark.png",
    "default_title": "Everykey",
    "default_popup": "html/popup.html"
  },
  "commands": {
    "trigger-focused-in-field-icon": {
      "description": "Open the Everykey overlay when a field is focused"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": false
  },
  "minimum_chrome_version": "73",
  "permissions": [
    "cookies",
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "images/*",
    "fonts/*",
    "*.html"
  ]
}