Fauxbar Lite

Fauxbar Lite

An alternative to Chrome's Omnibox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fauxbar Lite",
  "version": "1.8.1",
  "description": "An alternative to Chrome's Omnibox.",
  "minimum_chrome_version": "49",
  "background": {
    "scripts": [
      "/js/jquery-1.7.min.js",
      "/js/common.js",
      "/js/common-1.js",
      "/js/logerror.js",
      "/js/md5-min.js",
      "/js/background-new.js"
    ],
    "persistent": true
  },
  "options_page": "html/launchoptions.html",
  "browser_action": {
    "default_title": "Open Fauxbar Lite",
    "default_icon": "img/fauxbar19.png"
  },
  "commands": {
    "addressBoxNewTab": {
      "suggested_key": {
        "default": "Ctrl+I"
      },
      "description": "Open Fauxbar Lite's Address Box in a new tab"
    },
    "searchBoxNewTab": {
      "suggested_key": {
        "default": "Ctrl+Shift+I"
      },
      "description": "Open Fauxbar Lite's Search Box in a new tab"
    }
  },
  "manifest_version": 2,
  "content_security_policy": "default-src 'self';   script-src 'self' https://platform.twitter.com;   style-src 'self' 'unsafe-inline';   img-src 'self' http: https: data: chrome: filesystem:;   connect-src 'self' http: https: chrome-extension:;   frame-src http: https:",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://chrome.google.com/webstore*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://chrome.google.com/webstore*"
      ],
      "include_globs": [
        "http*"
      ],
      "js": [
        "js/contextMenu-hoverToggle.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://chrome.google.com/webstore*"
      ],
      "js": [
        "js/updatetitle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>",
    "tabs",
    "history",
    "bookmarks",
    "chrome://favicon/*",
    "unlimitedStorage",
    "management",
    "clipboardWrite",
    "clipboardRead",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "icons": {
    "16": "img/fauxbar16.png",
    "19": "img/fauxbar19.png",
    "48": "img/fauxbar48.png",
    "128": "img/fauxbar128.png"
  },
  "omnibox": {
    "keyword": "f"
  },
  "web_accessible_resources": [
    "html/fauxbar.html"
  ]
}