Shell Launcher

Shell Launcher

Launch a shell, with the current tabs url passed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shell Launcher",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Launch a shell, with the current tabs url passed.",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Shell Launcher"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "storage"
  ]
}