Tero - Save trees by browsing online

Tero - Save trees by browsing online

Tero turns your browser into a force of positive change and lets you fight climate change simply by browsing online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tero - Save trees by browsing online",
  "description": "Tero turns your browser into a force of positive change and lets you fight climate change simply by browsing online.",
  "version": "1.0.26",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon128.png"
  },
  "externally_connectable": {
    "matches": [
      "https://*.opentabs.org/*",
      "https://*.jointero.org/*"
    ]
  },
  "icons": {
    "16": "icons/TREE_SAVED.png",
    "32": "icons/TREE_SAVED.png",
    "48": "icons/TREE_SAVED.png",
    "128": "icons/TREE_SAVED.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "webRequest",
    "storage",
    "topSites",
    "cookies",
    "management"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "web-accessible-resources/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}