Teams Closer
This extension automatically closes the launched window from Teams meetings.
What is Teams Closer?
Teams Closer is a Chrome extension developed by deac.karns, and its main feature is "This extension automatically closes the launched window from Teams meetings.".
Extension Screenshots
Download Teams Closer Extension CRX File
Download Teams Closer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension automatically closes any tabs that were created when a new Teams meeting starts after 6 seconds, allowing you plenty of time to start the meeting.
Extension Basic Information
Name | Teams Closer |
ID | pdcfmkjjibapckmmkjmomboedjgkahap |
Official URL | https://chromewebstore.google.com/detail/teams-closer/pdcfmkjjibapckmmkjmomboedjgkahap |
Description | This extension automatically closes the launched window from Teams meetings. |
File Size | 230 KB |
Installation Count | 588 |
Current Version | 1.0 |
Last Updated | 2021-08-19 |
Publish Date | 2021-08-18 |
Rating | 5.00/5 Total 3 Ratings |
Developer | deac.karns |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/peledies/teams-close |
Help Page URL | https://github.com/peledies/teams-close |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Teams Closer", "description": "This extension automatically closes the launched window from Teams meetings.", "version": "1.0", "icons": { "16": "assets\/icon-16.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/teams.microsoft.com\/dl\/launcher\/*" ], "js": [ "content.js" ] } ] } |