Skater

Skater

Spotlight-like extension for Chrome bookmarks

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Skater",
  "description": "Spotlight-like extension for Chrome bookmarks",
  "version": "1.1.8",
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_popup": "static/popup.html",
    "default_icon": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "static/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "static/bundle.js"
      ]
    }
  ],
  "permissions": [
    "bookmarks",
    "tabs"
  ],
  "commands": {
    "launch": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      },
      "description": "launch Skater"
    }
  }
}