Tab Recycler

Tab Recycler

Recycles tabs left behind by tools like Zoom and Figma when they open their native app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Recycler",
  "version": "1.3",
  "short_name": "Tab Recycler",
  "description": "Recycles tabs left behind by tools like Zoom and Figma when they open their native app.",
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_title": "Tab Recycler"
  },
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "incognito": "split",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.figma.com/file/*"
      ],
      "js": [
        "detect_figma.js"
      ]
    },
    {
      "matches": [
        "https://*.zoom.us/*"
      ],
      "include_globs": [
        "*success"
      ],
      "js": [
        "detect_default.js"
      ]
    },
    {
      "matches": [
        "https://paper.dropbox.com/pad-desktop-redirect"
      ],
      "js": [
        "detect_default.js"
      ]
    }
  ],
  "permissions": [],
  "manifest_version": 3
}