U3 - Your Web3 Data Hub

U3 - Your Web3 Data Hub

Hub For Your Self Sovereign Data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "U3 - Your Web3 Data Hub",
  "description": "Hub For Your Self Sovereign Data",
  "version": "0.1.7",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "48": "images/logo48.png",
      "192": "images/logo192.png",
      "512": "images/logo512.png"
    }
  },
  "icons": {
    "48": "images/logo48.png",
    "192": "images/logo192.png",
    "512": "images/logo512.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "install_notifier.js"
      ],
      "matches": [
        "*://localhost/*",
        "*://u3.xyz/*",
        "*://dev.u3.xyz/*"
      ],
      "run_at": "document_idle"
    },
    {
      "css": [
        "content.css"
      ],
      "js": [
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://localhost/*",
        "*://u3.xyz/*",
        "*://dev.u3.xyz/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "minimum_chrome_version": "96",
  "permissions": [
    "declarativeNetRequestWithHostAccess",
    "contextMenus",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}