Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
什么是Bluejeans/Zoom Closer?
Bluejeans/Zoom Closer是由Edgar Gonzalez开发的Chrome扩展程序,该扩展的主要功能是“This extension automatically closes the launched window for Bluejeans and Zoom meetings.”。
扩展截图
下载Bluejeans/Zoom Closer扩展crx文件
下载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).
扩展基本信息
名称 | Bluejeans/Zoom Closer |
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" ] } ] } |