SearchScene – The Charitable Search Engine

SearchScene – The Charitable Search Engine

SearchScene is a search engine that donates 95% of its profits to charities, especially those that focus on climate change.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SearchScene – The Charitable Search Engine",
  "version": "1.10",
  "description": "SearchScene is a search engine that donates 95% of its profits to charities, especially those that focus on climate change.",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "SearchScene – The Charitable Search Engine",
    "default_icon": {
      "16": "images/icon-16x16.png",
      "32": "images/icon-32x32.png",
      "48": "images/icon-48x48.png",
      "128": "images/icon-128x128.png"
    }
  },
  "icons": {
    "16": "images/icon-16x16.png",
    "32": "images/icon-32x32.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "chrome_settings_overrides": {
    "homepage": "https://www.searchscene.com/?ext=chrome&action=homepage",
    "startup_pages": [
      "https://www.searchscene.com/?ext=chrome&action=startup"
    ],
    "search_provider": {
      "name": "SearchScene",
      "search_url": "https://www.searchscene.com/search/?q={searchTerms}&ext=chrome",
      "image_url": "https://www.searchscene.com/search/?q={searchTerms}&searchType=images&ext=chrome",
      "keyword": "searchscene",
      "favicon_url": "https://www.searchscene.com/favicon.ico",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "cookies"
  ],
  "host_permissions": [
    "https://www.searchscene.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.searchscene.com/*"
    ]
  }
}