Quick Search

Quick Search

A quick search shortcut on the desktop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_quick_search_application_name__",
  "description": "__MSG_quick_search_application_description__",
  "version": "0.0.2",
  "default_locale": "en",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "idle",
    "notifications",
    "tts",
    "unlimitedStorage",
    "*://*/*",
    "webview",
    "storage",
    "app.window.alwaysOnTop",
    "identity",
    "system.storage",
    "system.network",
    "system.memory",
    "system.display",
    "system.cpu",
    "power",
    "gcm",
    "fileSystem",
    "alarms",
    "contextMenus"
  ],
  "offline_enabled": true,
  "app": {
    "background": {
      "persistent": true,
      "scripts": [
        "background/settings.js",
        "background/main.js"
      ]
    }
  }
}