Bluejeans/Zoom Closer
This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Bluejeans/Zoom Closerคืออะไร?
Bluejeans/Zoom Closer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Edgar Gonzalez และคุณลักษณะหลักของมันคือ "This extension automatically closes the launched window for Bluejeans and Zoom meetings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bluejeans/Zoom Closer
ดาวน์โหลดไฟล์ส่วนขยาย 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). ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
]
}
]
} | |