Omnicomplete

Omnicomplete

Smart search for your bookmarks & openned tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Omnicomplete",
  "version": "0.0.6",
  "manifest_version": 2,
  "description": "Smart search for your bookmarks & openned tabs",
  "icons": {
    "24": "images/icon-24.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon-24.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "bookmarks",
    "history"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Comma",
        "mac": "Command+Comma",
        "chromeos": "Ctrl+Comma",
        "linux": "Ctrl+Comma"
      }
    }
  }
}