UNIHelper

UNIHelper

Slightly improving uniswap UI/UX

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UNIHelper",
  "version": "0.0.3",
  "description": "Slightly improving uniswap UI/UX",
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://info.uniswap.org/*"
      ],
      "run_at": "document_end",
      "js": [
        "helpers.js",
        "config.js",
        "unihelper.js"
      ]
    }
  ],
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 3
}