Google Meet Link Hider
Hides title and URL of the Google Meet link from the browser, quite useful while streaming.
Qu'est-ce que Google Meet Link Hider ?
Google Meet Link Hider est une extension Chrome développée par reachdeepman, et sa fonction principale est "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Meet Link Hider
Téléchargez les fichiers d'extension Google Meet Link Hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | jlfehbehocoadbdgmdkogjebkkeflmgm |
URL Officiel | https://chrome.google.com/webstore/detail/google-meet-link-hider/jlfehbehocoadbdgmdkogjebkkeflmgm |
Description | Hides title and URL of the Google Meet link from the browser, quite useful while streaming. |
Taille du Fichier | 12.47 KB |
Nombre d'Installations | 26 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-09-09 |
Date de Publication | 2020-09-09 |
Développeur | reachdeepman |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |