Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Wat is Bluejeans/Zoom Closer?
Bluejeans/Zoom Closer is een Chrome-extensie ontwikkeld door Edgar Gonzalez, en de belangrijkste functie is "This extension automatically closes the launched window for Bluejeans and Zoom meetings.".
Extensie Screenshots
Download het CRX-bestand van de extensie Bluejeans/Zoom Closer
Download Bluejeans/Zoom Closer-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
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).
Basisinformatie over de Extensie
Naam | Bluejeans/Zoom Closer |
ID | jnpjcapbahjpooibdheccijcjalacdno |
Officiële URL | https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno |
Beschrijving | This extension automatically closes the launched window for Bluejeans and Zoom meetings. |
Bestandsgrootte | 16.77 KB |
Aantal Installaties | 259 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2023-05-31 |
Publicatiedatum | 2020-04-24 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Edgar Gonzalez |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/edgar/bluejeans-zoom-closer |
Help Pagina-URL | https://github.com/edgar/bluejeans-zoom-closer/issues |
Ondersteunde Talen | 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" ] } ] } |