Save as Shortcut

Save as Shortcut

Offers the ability to save tab(s) and bookmarks as Internet shortcut files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save as Shortcut",
  "description": "Offers the ability to save tab(s) and bookmarks as Internet shortcut files.",
  "icons": {
    "16": "images/icons/save/save_16.png",
    "48": "images/icons/save/save_48.png",
    "128": "images/icons/save/save_128.png"
  },
  "version": "4.65.1945",
  "minimum_chrome_version": "21",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "contextMenus",
    "bookmarks"
  ],
  "browser_action": {
    "default_icon": "images/icons/save/save_38.png",
    "default_title": "Save as Shortcut",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "js/jszip.min.js"
    ]
  },
  "commands": {
    "saveAsShortcut_Single": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Save the current tab as an Internet shortcut file."
    },
    "saveAsShortcut_All": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Save all tabs as Internet shortcut files."
    }
  }
}