TurboTab

TurboTab

Spotlight search for chrome tabs, bookmarks and history!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TurboTab",
  "version": "0.0.8",
  "description": "Spotlight search for chrome tabs, bookmarks and history!",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "MacCtrl+Shift+L"
      }
    },
    "group": {
      "suggested_key": {
        "default": "Ctrl+Shift+G",
        "mac": "MacCtrl+Shift+G"
      },
      "description": "Group tabs in current window by domain"
    }
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "history",
    "contextMenus",
    "storage"
  ]
}