Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Hvad er Bluejeans/Zoom Closer?
Bluejeans/Zoom Closer er en Chrome-udvidelse udviklet af Edgar Gonzalez, og dens hovedfunktion er "This extension automatically closes the launched window for Bluejeans and Zoom meetings.".
Udvidelsesskærmbilleder
Download Bluejeans/Zoom Closer-udvidelses-CRX-fil
Download Bluejeans/Zoom Closer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | jnpjcapbahjpooibdheccijcjalacdno |
| Officiel URL | https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno |
| Beskrivelse | This extension automatically closes the launched window for Bluejeans and Zoom meetings. |
| Filstørrelse | 16.77 KB |
| Antal Installationer | 259 |
| Nuværende Version | 0.1 |
| Senest Opdateret | 2023-05-31 |
| Udgivelsesdato | 2020-04-24 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | Edgar Gonzalez |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/edgar/bluejeans-zoom-closer |
| Hjælpeside-URL | https://github.com/edgar/bluejeans-zoom-closer/issues |
| Understøttede Sprog | 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"
]
}
]
} | |