Weoja - privacy search engine

Weoja - privacy search engine

Search for freedom and explore the world without sacrificing privacy with Weoja.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_searchEngineName__",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 3,
  "version": "1.4",
  "permissions": [],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "__MSG_searchEngineName__",
      "favicon_url": "https://weoja.com/assets/favicon.ico",
      "search_url": "https://weoja.com/search?q={searchTerms}&addon=edge_extensions",
      "suggest_url": "https://api.weoja.com/v1/search/suggestions?q={searchTerms}&safeSearch=Moderate&type=list&mkt=__MSG_extensionUrlMkt__",
      "keyword": "weoja.com",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "default_locale": "en",
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.weoja.com/*",
        "*://weoja.com/*"
      ],
      "js": [
        "scripts/inject.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/logo16.png",
      "32": "icons/logo32.png",
      "48": "icons/logo48.png",
      "128": "icons/logo128.png"
    },
    "default_title": "__MSG_extensionName__"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}