Copy_Table_Data_Rh

Copy_Table_Data_Rh

Copy data from HTML tables to clipboard for pasting into spreadsheets, csv files, e-mails, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Copy_Table_Data_Rh",
  "description": "Copy data from HTML tables to clipboard for pasting into spreadsheets, csv files, e-mails, etc.",
  "version": "0.0.2",
  "action": {
    "default_title": "Copy Table Data (Rh)",
    "default_icon": {
      "16": "images/tc_cross_16.png",
      "24": "images/tc_cross_24.png",
      "48": "images/tc_cross_48.png",
      "96": "images/tc_cross_96.png",
      "124": "images/tc_cross_124.png"
    },
    "disable_default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}