Shiftsearch

Shiftsearch

The better way of searching the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shiftsearch",
  "description": "The better way of searching the web.",
  "version": "3.0.0",
  "permissions": [
    "storage",
    "tabs",
    "management"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "inject2.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://work.ink/*",
      "*://*.work.ink/*"
    ]
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Shiftsearch",
      "keyword": "ss",
      "favicon_url": "https://shiftsearch.me/favicon.ico",
      "search_url": "https://shiftsearch.me/q.php?q={searchTerms}",
      "suggest_url": "https://shiftsearch.me/suggest.php?query={searchTerms}",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "manifest_version": 3,
  "action": {
    "default_title": "Shiftsearch",
    "default_popup": "popup.html"
  }
}