TreeClicks - Plant Trees while Shopping

TreeClicks - Plant Trees while Shopping

An extension that plants trees for free every time you shop online at one of our 40000+ shopping partners.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TreeClicks - Plant Trees while Shopping",
  "short_name": "TreeClicks",
  "version": "0.0.8.9",
  "manifest_version": 3,
  "description": "__MSG_appDesc__",
  "homepage_url": "https://www.treeclicks.com",
  "icons": {
    "16": "icons/logo-inactive.png",
    "48": "icons/logo-active2.png",
    "128": "icons/logo-active2.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "js": [
        "src/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/logo-active2.png",
        "icons/logo-inactive.png",
        "tc_installed.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "src/options.html",
  "permissions": [
    "notifications",
    "storage",
    "alarms"
  ],
  "action": {
    "default_icon": "icons/logo-inactive.png",
    "default_title": "TreeClicks",
    "default_popup": "src/browser_action/popup.html"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}