Examine source code of Sheetgo | Connect, Filter, Merge, Excel, CSV

Inspect and view changes in Sheetgo | Connect, Filter, Merge, Excel, CSV source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sheetgo | Connect, Filter, Merge, Excel, CSV",
  "version": "5",
  "author": "Sheetgo.com",
  "description": "Connect Google Sheets, Excel, CSV, BigQuery, Google Docs and Gmail to import, export, merge, split and filter data automatically.",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "png/icon.png",
    "48": "png/icon.png",
    "128": "png/icon.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://docs.google.com/*",
    "https://*.sheetgo.com/*"
  ],
  "action": {
    "default_icon": {
      "19": "png/icon.png",
      "38": "png/icon.png"
    },
    "default_title": "Sheetgo"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/spreadsheets/d/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "content.js"
      ]
    }
  ]
}