Firefox Browser Eklentileri
  • Uzantılar
  • Temalar
    • Firefox için
    • Sözlükler ve dil paketleri
    • Diğer tarayıcı siteleri
    • Android eklentileri
Giriş
Zoom Success Tab Closer ön izlemesi

Zoom Success Tab Closer geliştiren: 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 inceleme)0 (0 inceleme)
4 kullanıcı4 kullanıcı
Firefox’u indir ve uzantıyı yükle
Dosyayı indir

Uzantı meta verileri

Bu uzantı hakkında
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);
});
});
0 inceleyiciden 0 puan aldı
Bu uzantıya puan vermek için giriş yapın
Henüz hiç puan yok

Puan kaydedildi

5
0
4
0
3
0
2
0
1
0
Henüz inceleme yapılmamış
İzinler ve verilerDaha fazla bilgi al

Gerekli izinler:

  • Tarayıcı sekmelerine erişme
Daha fazla bilgi
Sürüm
1.1
Boyut
8,03 KB
Son güncelleme
bir yıl önce (15 May 2024)
İlgili kategoriler
  • Sekmeler
Lisans
Mozilla Kamu Lisansı 2.0
Sürüm geçmişi
  • Tüm sürümleri göster
Koleksiyona ekle
Bu eklentiyi rapor et
Mozilla'nın ana sayfasına gidin

Eklentiler

  • Hakkında
  • Firefox Eklentileri Blogu
  • Uzantı Atölyesi
  • Geliştirici Merkezi
  • Geliştirici Politikaları
  • Topluluk Blogu
  • Forum
  • Hata bildir
  • İnceleme rehberi

Tarayıcılar

  • Desktop
  • Mobile
  • Enterprise

Ürünler

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Bluesky (@firefox.com)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • Gizlilik
  • Çerezler
  • Hukuki Bilgiler

Aksi belirtilmedikçe bu sitedeki içerikler Creative Commons Attribution Share-Alike Lisansı v3.0 veya daha yeni sürümüyle lisanslanmıştır.