Weagle Enterprise Extension

Weagle Enterprise Extension

Set Weagle as the default search engine and use all the features of our Enterprise account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Weagle Enterprise Extension",
  "version": "2.0",
  "description": "Set Weagle as the default search engine and use all the features of our Enterprise account",
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "tabs",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "https://as-weagle-test-weu-001.azurewebsites.net/*",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Weagle Power Search",
      "keyword": "weagle",
      "search_url": "https://weagle.enterprises/power-search/{searchTerms}",
      "favicon_url": "https://weagle.enterprises/favicon.ico",
      "suggest_url": "https://weagle.enterprises/power-search/{searchTerms}",
      "instant_url": "https://weagle.enterprises/power-search/{searchTerms}",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "path": "rules.json",
        "enabled": true
      }
    ]
  },
  "action": {
    "default_popup": "popup.html"
  }
}