Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
What is Bluejeans/Zoom Closer?
Bluejeans/Zoom Closer is a Chrome extension developed by Edgar Gonzalez, and its main feature is "This extension automatically closes the launched window for Bluejeans and Zoom meetings.".
Extension Screenshots
Download Bluejeans/Zoom Closer Extension CRX File
Download Bluejeans/Zoom 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
Automatically closes the Bluejeans/Zoom tabs that are created when launching a Bluejeans or Zoom meeting. Uses Chrome Context Script to send a message to a background page to close the tab. Requires no special permissions (except access to the page with Bluejeans and Zoom URLs).
Extension Basic Information
Name | Bluejeans/Zoom Closer |
ID | jnpjcapbahjpooibdheccijcjalacdno |
Official URL | https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno |
Description | This extension automatically closes the launched window for Bluejeans and Zoom meetings. |
File Size | 16.77 KB |
Installation Count | 259 |
Current Version | 0.1 |
Last Updated | 2023-05-31 |
Publish Date | 2020-04-24 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Edgar Gonzalez |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/edgar/bluejeans-zoom-closer |
Help Page URL | https://github.com/edgar/bluejeans-zoom-closer/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bluejeans\/Zoom Closer", "description": "This extension automatically closes the launched window for Bluejeans and Zoom meetings.", "version": "0.1", "icons": { "16": "assets\/icon-16.png", "32": "assets\/icon-32.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/zoom.us\/postattendee", "https:\/\/zoom.us\/j\/*", "https:\/\/*.zoom.us\/j\/*", "https:\/\/zoom.us\/s\/*", "https:\/\/*.zoom.us\/s\/*", "https:\/\/bluejeans.com\/*" ], "js": [ "content.js" ] } ] } |