New window without toolbar

New window without toolbar

Open current page in new window without toolbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "1.3.0",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "contextualIdentities",
    "cookies",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "options_ui": {
    "browser_style": true,
    "page": "options.html"
  },
  "commands": {
    "open-new-window": {
      "suggested_key": {
        "default": "Alt+Shift+N",
        "mac": "Alt+Shift+N"
      },
      "description": "__MSG_openNewWindowCommand__"
    }
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}