TableSherpa: Web to Sheets Exporter

TableSherpa: Web to Sheets Exporter

Export tables on the web to Google Sheets with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TableSherpa: Web to Sheets Exporter",
  "version": "0.1.3",
  "manifest_version": 3,
  "description": "Export tables on the web to Google Sheets with a single click.",
  "author": "[email protected]",
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "activeTab",
    "identity",
    "storage",
    "contextMenus"
  ],
  "icons": {
    "16": "icons/favicon-16x16.png",
    "48": "icons/favicon-32x32.png",
    "128": "icons/android-chrome-192x192.png"
  },
  "oauth2": {
    "client_id": "25034717816-543fvkg3jh9md4llr05vbcophk2u3obj.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/spreadsheets"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "public/index.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-inline' https://unpkg.com/"
  }
}