Google Meet Link Hider
Hides title and URL of the Google Meet link from the browser, quite useful while streaming.
Google Meet Link Hider क्या है?
Google Meet Link Hider reachdeepman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides title and URL of the Google Meet link from the browser, quite useful while streaming."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Meet Link Hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Hides title and URL of the Google Meet link from the browser so that no meeting link is leaked while sharing the screen. It's quite useful while streaming. The title bar is automatically masked for all the google meet's link but to mask the URL you have to click the 'Mask URL' button from the popup of the plugin, preferably after joining the meeting. Also, it doesn't affect the URL and title bar of any other website.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jlfehbehocoadbdgmdkogjebkkeflmgm |
आधिकारिक URL | https://chrome.google.com/webstore/detail/google-meet-link-hider/jlfehbehocoadbdgmdkogjebkkeflmgm |
विवरण | Hides title and URL of the Google Meet link from the browser, quite useful while streaming. |
फ़ाइल का आकार | 12.47 KB |
स्थापना संख्या | 26 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2020-09-09 |
प्रकाशन तिथि | 2020-09-09 |
डेवलपर | reachdeepman |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Link Hider", "version": "1.0", "description": "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.meet.google.com\/*", "*:\/\/meet.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "tabs", "*:\/\/*.meet.google.com\/*", "*:\/\/meet.google.com\/*", "webNavigation", "activeTab" ], "icons": { "16": "images\/icon128.png", "32": "images\/icon128.png", "48": "images\/icon128.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |