OkBro

OkBro

OkBro is used as a Personal Asistant, Control your Browser / Desktop & Controll IOT devices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OkBro",
  "description": "OkBro is used as a Personal Asistant, Control your Browser / Desktop & Controll IOT devices.",
  "version": "1.1",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "minimum_chrome_version": "88",
  "offline_enabled": false,
  "icons": {
    "48": "web/images/icon_48.png",
    "128": "web/images/icon_128.png"
  },
  "action": {
    "default_icon": {
      "19": "web/images/icon_19.png",
      "38": "web/images/icon_38.png"
    },
    "default_title": "OkBro",
    "default_popup": "popup.html"
  },
  "permissions": [
    "idle",
    "power",
    "management",
    "storage",
    "tabs",
    "activeTab",
    "topSites",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "optional_permissions": [],
  "options_page": "options.html",
  "background_page": "background.html",
  "content_scripts": [
    {
      "js": [
        "web/js/content_script.js"
      ],
      "matches": [
        "<all_urls>",
        "*://*/*"
      ]
    }
  ]
}