Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Co je Bluejeans/Zoom Closer?
Bluejeans/Zoom Closer je rozšíření Chrome vyvinuté Edgar Gonzalez, a jeho hlavní funkcí je „This extension automatically closes the launched window for Bluejeans and Zoom meetings.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bluejeans/Zoom Closer
Stáhněte si soubory rozšíření Bluejeans/Zoom Closer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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).
Základní Informace o Rozšíření
Název | Bluejeans/Zoom Closer |
ID | jnpjcapbahjpooibdheccijcjalacdno |
Oficiální URL | https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno |
Popis | This extension automatically closes the launched window for Bluejeans and Zoom meetings. |
Velikost souboru | 16.77 KB |
Počet instalací | 259 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2023-05-31 |
Datum Vydání | 2020-04-24 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Edgar Gonzalez |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/edgar/bluejeans-zoom-closer |
URL Stránky Nápovědy | https://github.com/edgar/bluejeans-zoom-closer/issues |
Podporované Jazyky | 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" ] } ] } |