Uni Terminal

Uni Terminal

Uni Terminal, the first all-in-one terminal for crypto users!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Uni Terminal",
  "description": "Uni Terminal, the first all-in-one terminal for crypto users!",
  "version": "5.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "UniTerminal - Easy trading",
    "default_icon": "icon.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "clipboardRead"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "eth-bi.png",
        "sol-bi.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}