FINDEX: The quickest way to search

FINDEX: The quickest way to search

The quickest way to search tabs, history, bookmarks, downloads, and even the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FINDEX: The quickest way to search",
  "description": "The quickest way to search tabs, history, bookmarks, downloads, and even the web!",
  "version": "1.0.0",
  "background": {
    "scripts": [
      "fuse.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "history",
    "bookmarks",
    "commands",
    "activeTab",
    "downloads"
  ],
  "manifest_version": 2,
  "browser_action": {},
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "commands": {
    "search": {
      "suggested_key": {
        "default": "Ctrl+Space",
        "mac": "Command+Shift+Space"
      },
      "description": "Open the search window"
    }
  }
}