Copy Tables

Copy Tables

Copying tables.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Tables",
  "short_name": "Copy tables",
  "version": "0.2.0",
  "manifest_version": 3,
  "description": "Copying tables.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Copy tables",
    "default_icon": "icons/icon128.png",
    "default_popup": "frontPage.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "background",
    "clipboardWrite",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/jquery-3.4.1.js",
        "js/jquery.hotkeys.js",
        "shared.js",
        "tableCopy.js"
      ],
      "css": [
        "tableCopy.css"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}