Close Microsoft Teams tabs
Automatically close Microsoft Teams tabs.
Qu'est-ce que Close Microsoft Teams tabs ?
Close Microsoft Teams tabs est une extension Chrome développée par Fran Pérez, et sa fonction principale est "Automatically close Microsoft Teams tabs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Close Microsoft Teams tabs
Téléchargez les fichiers d'extension Close Microsoft Teams tabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Close Microsoft Teams tabs |
ID | dnelljaflobefffkdladbegdlhpmdopn |
URL Officiel | https://chromewebstore.google.com/detail/close-microsoft-teams-tab/dnelljaflobefffkdladbegdlhpmdopn |
Description | Automatically close Microsoft Teams tabs. |
Taille du Fichier | 20.78 KB |
Nombre d'Installations | 1,126 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2021-12-22 |
Date de Publication | 2021-12-22 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Fran Pérez |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://twitter.com/mrrocks |
Langues Prises en Charge | 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" } ] } |