ClickATree

ClickATree

The Click A Tree tree-planting assistant plants trees for you while you surf the web - for FREE! Click A Tree has partnered with…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ClickATree",
  "description": "",
  "version": "1.0.1",
  "manifest_version": 3,
  "author": "Mohammad Apel Mahmod <[email protected]>",
  "icons": {
    "16": "images/icons/16x16.png",
    "48": "images/icons/48x48.png",
    "128": "images/icons/128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery.min.js",
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "19": "images/icons/19x19.png",
      "38": "images/icons/38x38.png"
    },
    "default_title": "ClickATree",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pages/firstPopup.html",
        "pages/secondPopup.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}