zoom auto close

This extension automatically closes tabs left by zoom meeting application.

What is zoom auto close?

zoom auto close is a Chrome extension developed by kskashyap94, and its main feature is "This extension automatically closes tabs left by zoom meeting application.".

Extension Screenshots

screenshot

Download zoom auto close Extension CRX File

Download zoom auto close 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 tabs left open by zoom meeting application. This also takes care to not close tabs which are related to joining meeting                    

Extension Basic Information

Name zoom auto close zoom auto close
ID enehgndfhnlppnnfkjpapphbigmjnfjg
Official URL https://chrome.google.com/webstore/detail/zoom-auto-close/enehgndfhnlppnnfkjpapphbigmjnfjg
Description This extension automatically closes tabs left by zoom meeting application.
File Size 5.26 KB
Installation Count 1,000
Current Version 1.0
Last Updated 2020-07-15
Publish Date 2020-07-15
Rating 5.00/5 Total 4 Ratings
Developer kskashyap94
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "zoom auto close",
    "description": "This extension automatically closes tabs left by zoom meeting application.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/zoom.us\/postattendee",
                "https:\/\/*.zoom.us\/postattendee*",
                "https:\/\/zoom.us\/j\/*",
                "https:\/\/*.zoom.us\/j\/*",
                "https:\/\/zoom.us\/s\/*",
                "https:\/\/*.zoom.us\/s\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}