KeyController ChromeOS

KeyController ChromeOS

Allow to sign filtering by URL in ChromeOS // Permite firmar filtrando por URL en ChromeOS

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "KeyController ChromeOS",
  "description": "Allow to sign filtering by URL in ChromeOS // Permite firmar filtrando por URL en ChromeOS",
  "version": "1.0",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "offline_48.png",
    "default_title": "KeyController No habilitado",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "identity",
    "identity.email",
    "enterprise.deviceAttributes",
    "certificateProvider",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/",
    "*://*/*"
  ]
}