Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Что такое Bluejeans/Zoom Closer?
Bluejeans/Zoom Closer - это расширение Chrome, разработанное Edgar Gonzalez, и его основная функция - "This extension automatically closes the launched window for Bluejeans and Zoom meetings.".
Снимки экрана расширения
Скачать файл CRX расширения Bluejeans/Zoom Closer
Скачайте файлы расширений Bluejeans/Zoom Closer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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). Основная информация о расширении
| Название | |
| ID | jnpjcapbahjpooibdheccijcjalacdno |
| Официальный URL | https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno |
| Описание | This extension automatically closes the launched window for Bluejeans and Zoom meetings. |
| Размер файла | 16.77 KB |
| Количество установок | 259 |
| Текущая Версия | 0.1 |
| Последнее Обновление | 2023-05-31 |
| Дата публикации | 2020-04-24 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | Edgar Gonzalez |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/edgar/bluejeans-zoom-closer |
| URL страницы помощи | https://github.com/edgar/bluejeans-zoom-closer/issues |
| Поддерживаемые языки | 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"
]
}
]
} | |