Examine source code of OnLoad Unload Tabs

Inspect and view changes in OnLoad Unload 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": "OnLoad Unload Tabs",
  "short_name": "Onload Unload",
  "version": "0.0.3",
  "description": "When you open chrome, and it restores all your tabs, this extension unloads all tabs except the active tab",
  "homepage_url": "https://garyc.dev",
  "icons": {
    "32": "icons/unload32.png",
    "48": "icons/unload48.png",
    "96": "icons/unload96.png",
    "128": "icons/unload128.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "minimum_chrome_version": "89"
}