Examine source code of Save Tabs

Inspect and view changes in Save Tabs 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",
  "manifest_version": 3,
  "name": "Save Tabs",
  "version": "1.0.1",
  "description": "Export and Import Tabs.",
  "homepage_url": "https://github.com/karna98/Save-Tabs",
  "icons": {
    "16": "icons/Save_Tabs_16.png",
    "32": "icons/Save_Tabs_32.png",
    "48": "icons/Save_Tabs_48.png",
    "64": "icons/Save_Tabs_64.png",
    "96": "icons/Save_Tabs_96.png",
    "128": "icons/Save_Tabs_128.png"
  },
  "permissions": [
    "tabs",
    "tabGroups",
    "downloads",
    "storage"
  ],
  "incognito": "split",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/Save_Tabs_16.png",
      "32": "icons/Save_Tabs_32.png",
      "48": "icons/Save_Tabs_48.png",
      "64": "icons/Save_Tabs_64.png",
      "96": "icons/Save_Tabs_96.png",
      "128": "icons/Save_Tabs_128.png"
    },
    "default_title": "Save Tabs",
    "default_popup": "saveTab.html"
  }
}