Nano Donate

Nano Donate

Nano donations made easy!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nano Donate",
  "version": "1.4.0",
  "description": "Nano donations made easy!",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "getNanoDonateData.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/nano-donate-inactive-128.png",
      "32": "images/nano-donate-inactive-128.png",
      "48": "images/nano-donate-inactive-128.png",
      "128": "images/nano-donate-inactive-128.png"
    }
  },
  "icons": {
    "16": "images/nano-donate-active-128.png",
    "32": "images/nano-donate-active-128.png",
    "48": "images/nano-donate-active-128.png",
    "128": "images/nano-donate-active-128.png"
  },
  "manifest_version": 3
}