Quick search lite

Quick search lite

Save time to search from all Engine.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick search lite",
  "version": "1.0.0",
  "description": "Save time to search from all Engine.",
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "contextMenus",
    "tabs",
    "notifications",
    "<all_urls>",
    "*://*/*"
  ],
  "optional_permissions": [
    "topSites",
    "http://www.developer.chrome.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+5"
      },
      "description": "quick search lite",
      "global": true
    }
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon_16.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    }
  },
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "options_page": "options.html",
  "manifest_version": 2,
  "short_name": "QSL"
}