Redirect Tab Closer
This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.
Redirect Tab Closer là gì?
Redirect Tab Closer là một tiện ích mở rộng Chrome được phát triển bởi erictdeveloper, và tính năng chính của nó là "This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Redirect Tab Closer
Tải xuống các tệp mở rộng Redirect Tab Closer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Redirect Tab Closer |
ID | fdffoepgfafohjnlmdeaekigejifenpd |
URL Chính Thức | https://chromewebstore.google.com/detail/redirect-tab-closer/fdffoepgfafohjnlmdeaekigejifenpd |
Mô tả | This extension automatically closes the launched window for Bluejeans/Zoom meetings + Slack URLs. |
Kích Thước Tệp | 38.37 KB |
Số Lần Cài Đặt | 587 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2021-02-16 |
Ngày Phát Hành | 2021-02-15 |
Đánh Giá | 4.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | erictdeveloper |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ethirolle/redirect-tab-closer |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |