Redirect Tab Closer
This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.
什么是Redirect Tab Closer?
Redirect Tab Closer是由erictdeveloper开发的Chrome扩展程序,该扩展的主要功能是“This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.”。
扩展截图
下载Redirect Tab Closer扩展crx文件
下载Redirect Tab Closer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically closes the Bluejeans, Zoom and Slack tabs that are created when launching a meeting or a Slack link. Uses Chrome Context Script to send a message to a background page to close the tab. Requires no special permissions (except access to the redirect page with Bluejeans, Zoom or Slack URLs). Based on the Zoom Closer extension. Will try to extend this in the future to allow for user-configurable URLs that will get auto-closed.
扩展基本信息
名称 | Redirect Tab Closer |
ID | fdffoepgfafohjnlmdeaekigejifenpd |
官方URL | https://chromewebstore.google.com/detail/redirect-tab-closer/fdffoepgfafohjnlmdeaekigejifenpd |
简介 | This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs. |
文件大小 | 38.37 KB |
安装次数 | 587 |
当前版本 | 0.3 |
更新时间 | 2021-02-16 |
上架时间 | 2021-02-15 |
评分 | 4.83/5 共6次评分 |
开发者 | erictdeveloper |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/ethirolle/redirect-tab-closer |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Redirect Tab Closer", "description": "This extension automatically closes the launched window for Bluejeans\/Zoom meetings + Slack URLs.", "version": "0.3", "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\/*", "https:\/\/*.slack.com\/archives\/*" ], "js": [ "content.js" ] } ] } |