Save Text To File

Save Text To File

Save highlighted text to a file on your computer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Save Text to File",
  "description": "Save highlighted text to a file on the computer.",
  "version": "4.3.0",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "permissions": [
    "contextMenus",
    "downloads",
    "storage",
    "notifications",
    "activeTab",
    "nativeMessaging"
  ],
  "background": {
    "scripts": [
      "backgroundScript.js"
    ]
  },
  "manifest_version": 2,
  "icons": {
    "64": "images/ico.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "commands": {
    "save-text-to-file": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Saves the selected text from the active tab to a file."
    }
  }
}