Ultimate Browser Companion BETA

Ultimate Browser Companion BETA

Manage your online activities and DApps securely with Ultimate companion. Please note the product is in BETA testing phase!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ultimate Browser Companion BETA",
  "description": "Manage your online activities and DApps securely with Ultimate companion. Please note the product is in BETA testing phase!",
  "version": "1.4.1",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs",
    "clipboardWrite"
  ],
  "icons": {
    "19": "images/icon-19.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png"
    },
    "default_title": "Ultimate Browser Companion BETA",
    "default_popup": "dummy.html",
    "theme_icons": [
      {
        "light": "images/icon-16.png",
        "dark": "images/icon-16.png",
        "size": 16
      },
      {
        "light": "images/icon-32.png",
        "dark": "images/icon-32.png",
        "size": 32
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/dapp_explorer.js",
        "scripts/inject.js",
        "fonts/*.woff",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "host_permissions": [
    "*://*/*"
  ]
}