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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |