Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Vad är Bluejeans/Zoom Closer?
Bluejeans/Zoom Closer är en Chrome-tillägg utvecklad av Edgar Gonzalez, och dess huvudfunktion är "This extension automatically closes the launched window for Bluejeans and Zoom meetings.".
Tilläggsskärmbilder
Ladda ner Bluejeans/Zoom Closer-förlängningens CRX-fil
Ladda ner Bluejeans/Zoom Closer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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).
Grundläggande Information om Tillägg
Namn | Bluejeans/Zoom Closer |
ID | jnpjcapbahjpooibdheccijcjalacdno |
Officiell webbadress | https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno |
Beskrivning | This extension automatically closes the launched window for Bluejeans and Zoom meetings. |
Filstorlek | 16.77 KB |
Antal Installationer | 259 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2023-05-31 |
Publiceringsdatum | 2020-04-24 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Edgar Gonzalez |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/edgar/bluejeans-zoom-closer |
Hjälpsida URL | https://github.com/edgar/bluejeans-zoom-closer/issues |
Stödda Språk | 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" ] } ] } |