GoGoPrivate — Private Search Engine

GoGoPrivate — Private Search Engine

Take back your online privacy by using GoGoPrivate as your default search engine.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GoGoPrivate — Private Search Engine",
  "description": "Take back your online privacy by using GoGoPrivate as your default search engine.",
  "version": "1.1.1",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "minimum_chrome_version": "56",
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "https://gogoprivate.com/*"
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "GoGoPrivate",
      "keyword": "gogoprivate.com",
      "search_url": "https://gogoprivate.com/search?q={searchTerms}",
      "suggest_url": "https://gogoprivate.com/nav/browse.php?u=https://api.bing.com/osjson.aspx?q={searchTerms}&mkt=__MSG_@@ui_locale__",
      "favicon_url": "https://gogoprivate.com/favicon.ico",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon_16.png",
      "48": "icons/icon_48.png",
      "128": "icons/icon_128.png"
    },
    "default_title": "GoGoPrivate — Private Search Engine"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://gogoprivate.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ]
}