Simple Apps Launcher

Simple Apps Launcher

Launch Chrome apps using a fancy popup. Reorder them as you like.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "2.4.16",
  "manifest_version": 2,
  "incognito": "split",
  "description": "__MSG_appDescription__",
  "icons": {
    "48": "images/grid48.png",
    "128": "images/grid128.png"
  },
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "management",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "19": "images/icon19.png",
      "32": "images/icon32.png",
      "38": "images/icon38.png"
    },
    "default_title": "Apps",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Period",
        "mac": "Command+Period",
        "chromeos": "Ctrl+Period",
        "linux": "Ctrl+Period"
      }
    },
    "open-as-window": {
      "suggested_key": {
        "windows": "Ctrl+Comma",
        "mac": "Command+Comma",
        "chromeos": "Ctrl+Comma",
        "linux": "Ctrl+Comma"
      },
      "description": "Open as window",
      "global": true
    }
  }
}