Treegle - The search engine that plants trees

Treegle - The search engine that plants trees

This extension sets your search engine to Treegle and customizes your new tab page so you can plant trees with every search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_store_title_new__",
  "default_locale": "en",
  "homepage_url": "https://www.treegle.org/",
  "icons": {
    "16": "img/favicon16.png",
    "48": "img/logo_square_transparent48.png",
    "128": "img/logo_square_transparent128.png"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "img/favicon16.png",
    "img/logo.png"
  ],
  "browser_action": {
    "default_title": "__MSG_browser_action_hover__",
    "default_icon": "img/icon19.png",
    "browser_style": false
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.treegle.org/*"
      ],
      "js": [
        "js/funnel.js"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "__MSG_store_shortdesc_new__",
  "version": "3.4.5",
  "permissions": [
    "*://*.treegle.org/*"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_security_policy": "script-src 'self' https://ext.treegle.org; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "*://*.treegle.org/*"
    ]
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "corona",
      "favicon_url": "https://www.treegle.org/img/logo_square_transparent48.png",
      "keyword": "keyword covid",
      "search_url": "https://www.treegle.org/search.html?q={searchTerms}",
      "encoding": "UTF-8",
      "is_default": true
    }
  }
}