Table2Clipboard2

Table2Clipboard2

Allow to copy to clipboard an HTML table rows/columns selection correctly formatted. This is forked from https://github.com/dafizilla/firefox-table2clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Table2Clipboard",
  "version": "1.6.2.1resigned1",
  "description": "Allow to copy to clipboard an HTML table rows/columns selection correctly formatted.",
  "applications": {
    "gecko": {
      "id": "t2c@shirosaki",
      "strict_min_version": "60.0"
    }
  },
  "icons": {
    "16": "icons/t2c-16x16.png",
    "32": "icons/t2c-32x32.png",
    "64": "icons/t2c-64x64.png",
    "128": "icons/t2c-128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "copy-selected-cells": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "Copy selected cells to clipboard"
    }
  },
  "options_ui": {
    "browser_style": true,
    "page": "src/main/content/t2c/settings/settings.html"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "menus",
    "storage",
    "clipboardWrite"
  ],
  "default_locale": "en"
}