Close Microsoft Teams tabs
Automatically close Microsoft Teams tabs.
Wat is Close Microsoft Teams tabs?
Close Microsoft Teams tabs is een Chrome-extensie ontwikkeld door Fran Pérez, en de belangrijkste functie is "Automatically close Microsoft Teams tabs.".
Extensie Screenshots
Download het CRX-bestand van de extensie Close Microsoft Teams tabs
Download Close Microsoft Teams tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension will automatically close all the tabs left open after clicking on a "join meeting" link from Outlook Web. This extension was inspired by: "Close Figma Tab" by Manuel Muñoz Solera.
Basisinformatie over de Extensie
Naam | Close Microsoft Teams tabs |
ID | dnelljaflobefffkdladbegdlhpmdopn |
Officiële URL | https://chromewebstore.google.com/detail/close-microsoft-teams-tab/dnelljaflobefffkdladbegdlhpmdopn |
Beschrijving | Automatically close Microsoft Teams tabs. |
Bestandsgrootte | 20.78 KB |
Aantal Installaties | 1,126 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2021-12-22 |
Publicatiedatum | 2021-12-22 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Fran Pérez |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://twitter.com/mrrocks |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Microsoft Teams tabs", "version": "0.0.2", "manifest_version": 3, "description": "Automatically close Microsoft Teams tabs.", "icons": { "48": "icons\/48.png", "96": "icons\/96.png", "128": "icons\/128.png" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/teams.microsoft.com\/dl\/launcher\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ] } |