Examine source code of Ultimate Tab Closer

Inspect and view changes in Ultimate Tab Closer 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": "Ultimate Tab Closer",
  "version": "1.2",
  "description": "Automatically close browser tabs based on timeout and search patterns or regular expressions.",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "action": {
    "default_popup": "action/tabcloser.html"
  },
  "background": {
    "service_worker": "background/backgroundWorker.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ]
}