Zoom Closer
This extension automatically closes the launched window from Zoom meetings.
Zoom Closer क्या है?
Zoom Closer touchy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically closes the launched window from Zoom meetings."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Zoom Closer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Zoom Closer |
ID | appjbedfhcmpknanmbndpojcllfaemal |
आधिकारिक URL | 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" ] } ] } |