Click and Save text

Click and Save text

You can save the text in the internet page as text file.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Click and Save text",
  "description": "You can save the text in the internet page as text file.",
  "version": "1.05",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "activate_key": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "Command+Q"
      },
      "description": "activate this to save the clicked text as text file."
    },
    "toggle_the_click_title": {
      "suggested_key": {
        "default": "Ctrl+Shift+Q",
        "mac": "Command+Shift+Q"
      },
      "description": "Toggle the click title option that allows you to save the clicked text as a file title."
    }
  },
  "permissions": [
    "activeTab"
  ]
}