TreeClicks - Plant Trees while Shopping Online

TreeClicks - Plant Trees while Shopping Online

An extension that plants trees every time you shop at one of our 50000+ shopping partners. We can't stop you from shopping, but you can help us planting trees for free!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TreeClicks - Plant Trees while Shopping",
  "short_name": "TreeClicks",
  "version": "0.0.8.5",
  "manifest_version": 2,
  "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": {
    "scripts": [
      "src/backgrounds/background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "icons/logo-active2.png"
  ],
  "options_page": "src/options.html",
  "browser_action": {
    "default_icon": "icons/logo-inactive.png",
    "default_title": "TreeClicks",
    "default_popup": "src/browser_action/popup.html"
  },
  "permissions": [
    "notifications",
    "https://*/*",
    "http://*/*",
    "tabs",
    "storage",
    "alarms"
  ]
}