Spotlight

Spotlight

Spotlight search for chrome. Press Cmd+M (Ctrl+M) to open the spotlight action popup

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Spotlight",
  "icons": {
    "96": "icon.png",
    "128": "icon_128.png"
  },
  "description": "Spotlight search for chrome. Press Cmd+M (Ctrl+M) to open the spotlight action popup",
  "version": "2.00.0",
  "manifest_version": 2,
  "options_page": "options.html",
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "history",
    "downloads",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "homepage_url": "https://usespotlight.co",
  "optional_permissions": [
    "<all_urls>",
    "notifications",
    "alarms"
  ],
  "content_security_policy": "script-src 'self' https://code.jquery.com/jquery-1.11.3.min.js; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Toggle spotlight"
    },
    "last-tab": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      },
      "description": "Switch to last active tab"
    }
  }
}