Examine source code of Simple Export to Excel

Inspect and view changes in Simple Export to Excel 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
{
  "name": "Simple Export to Excel",
  "version": "0.0.0.8",
  "manifest_version": 2,
  "description": "A browser extension to export table data to excel file.",
  "homepage_url": "https://github.com/gnairooze/ext-export-excel/wiki",
  "permissions": [
    "contextMenus",
    "activeTab",
    "clipboardWrite"
  ],
  "icons": {
    "16": "icons/table-16.png",
    "32": "icons/table-32.png",
    "48": "icons/table-48.png",
    "128": "icons/table-128.png",
    "512": "icons/table-512.png"
  },
  "background": {
    "persistent": false,
    "matches": [
      "<all_urls>"
    ],
    "scripts": [
      "background.js"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}