Zoom Closer
This extension automatically closes the launched window from Zoom meetings.
什麼是Zoom Closer?
Zoom Closer是由touchy開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically closes the launched window from Zoom meetings.”。
擴展截圖
下載Zoom Closer擴展crx文件
下載Zoom Closer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Automatically closes the Zoom Post Attendee window that is created when launching a Zoom meeting from zoom.us. 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 'https://zoom.us/postattende' and 'https://zoom.us/j/*).
Source: https://github.com/seanstar12/zoom-close
1.7: Updated timeout to 6 seconds (https://github.com/seanstar12/zoom-close/pull/8)
1.6: Merged change from faorfwd to add zoom.us/s/* domain
1.5: Merged change from chriscannon to add zoom.us/j/* domain 擴展基本資訊
| 名稱 | |
| ID | appjbedfhcmpknanmbndpojcllfaemal |
| 官方網址 | https://chrome.google.com/webstore/detail/zoom-closer/appjbedfhcmpknanmbndpojcllfaemal |
| 簡介 | This extension automatically closes the launched window from Zoom meetings. |
| 檔案大小 | 129 KB |
| 安裝次數 | 108,819 |
| 目前版本 | 1.7 |
| 更新時間 | 2020-05-21 |
| 上架時間 | 2020-05-21 |
| 評分 | 3.63/5 共 109 次評分 |
| 開發者 | touchy |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Zoom Closer",
"description": "This extension automatically closes the launched window from Zoom meetings.",
"version": "1.7",
"icons": {
"16": "assets\/icon-16.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\/*"
],
"js": [
"content.js"
]
}
]
} | |