SearchScene – New Tab

SearchScene – New Tab

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 – New Tab",
  "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-newtab&action=homepage",
    "startup_pages": [
      "https://www.searchscene.com/?ext=chrome-newtab&action=startup"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "cookies"
  ],
  "host_permissions": [
    "https://www.searchscene.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.searchscene.com/*"
    ]
  }
}