My Search Hub (Beta)

My Search Hub (Beta)

Convenient search bar displayed at the top of your web pages to provide you with quick search functionality and productivity tools.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "core/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "html/styles/bar.css"
      ],
      "exclude_matches": [
        "*://*.webexplorer.co/*",
        "*://*.websearchdl.co/*",
        "*://*.yahoo.com/*",
        "*://*.yahoo.net/*",
        "*://*.hfindingformspro.com/*",
        "*://*.myway.com/*",
        "*://*.about.com/*",
        "*://*.ask.com/*",
        "*://*.finecomb.com/*",
        "*://*.govtsearches.com/*",
        "*://*.homeandgardenideas.com/*",
        "*://*.idealhomegarden.com/*",
        "*://*.informationvine.com/*",
        "*://*.simpli.com/*",
        "*://*.symptomfind.com/*",
        "*://*.pronto.com/*",
        "*://*.excite.com/*",
        "*://*.smarter.com/*",
        "*://*.consumersearch.com/*",
        "*://*.verywellhealth.com/*",
        "*://*.thespruce.com/*",
        "*://*.mywebsearch.com/*",
        "*://*.mysearch.com/*",
        "*://*.searchthis.com/*",
        "*://*.myway.com/*",
        "*://*.teoma.comv/*",
        "*://*.searchbetter.com/*",
        "*://*.mysearches.co/*",
        "*://*.hidemysearches.com/*",
        "*://*.hidemyhistory.com/*"
      ],
      "js": [
        "core/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Convenient search bar displayed at the top of your web pages to provide you with quick search functionality and productivity tools.",
  "icons": {
    "128": "icon.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "name": "My Search Hub (Beta)",
  "permissions": [
    "storage",
    "cookies",
    "http://*/*",
    "https://*/*"
  ],
  "version": "3.0.3",
  "web_accessible_resources": [
    "*"
  ]
}