Firefox Browser Add-ons
  • Extensions
  • Themes
    • for Firefox
    • Dictionaries & Language Packs
    • Other Browser Sites
    • Add-ons for Android
Log in
Preview of Zoom Success Tab Closer

Zoom Success Tab Closer by Tangy

Automatically closes any Zoom (meeting software) tab that ends in '#success' (this URL is only used to join a meeting) after 10 seconds.

0 (0 reviews)0 (0 reviews)
4 Users4 Users
You’ll need Firefox to use this extension
Download Firefox and get the extension
Download file

Extension Metadata

About this extension
Could not provide source code, because does not require permissions needed. So I put it here, feel free to build on your own and sideload
manifest.json
{
"manifest_version": 2,
"name": "Zoom Success Tab Closer",
"version": "1.1",
"description": "Automatically closes any Zoom tab that ends in '#success' after 10 seconds.",
"permissions": [
"tabs"
],
"background": {
"scripts": ["background.js"]
}
}

background.js
function checkForZoomSuccessTab(tab) {
if (tab.url.includes("zoom.us") && tab.url.endsWith("#success")) {
setTimeout(() => {
// Close the tab after 10 seconds
browser.tabs.remove(tab.id);
}, 10000); // 10000 milliseconds = 10 seconds
}
}

// Listen for any tab updates
browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
// Ensure the URL is defined in the changeInfo
if (changeInfo.url) {
checkForZoomSuccessTab(tab);
}
});

// Check all tabs on startup
browser.tabs.query({}).then(tabs => {
tabs.forEach(tab => {
checkForZoomSuccessTab(tab);
});
});
Rated 0 by 0 reviewers
Sign in to rate this extension
There are no ratings yet

Star rating saved

5
0
4
0
3
0
2
0
1
0
No reviews yet
Permissions and dataLearn more

Required permissions:

  • Access browser tabs
More information
Version
1.1
Size
8.03 KB
Last updated
a year ago (May 15, 2024)
Related Categories
  • Tabs
License
Mozilla Public License 2.0
Version History
  • See all versions
Add to collection
Report this add-on
Release notes for 1.1
Removed all urls permission
More extensions by Tangy
  • There are no ratings yet

  • There are no ratings yet

  • There are no ratings yet

  • There are no ratings yet

  • There are no ratings yet

  • There are no ratings yet

Go to Mozilla’s homepage

Add-ons

  • About
  • Firefox Add-ons Blog
  • Extension Workshop
  • Developer Hub
  • Developer Policies
  • Community Blog
  • Forum
  • Report a bug
  • Review Guide

Browsers

  • Desktop
  • Mobile
  • Enterprise

Products

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Bluesky (@firefox.com)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • Privacy
  • Cookies
  • Legal

Except where otherwise noted, content on this site is licensed under the Creative Commons Attribution Share-Alike License v3.0 or any later version.