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