Google Meet Link Hider
Hides title and URL of the Google Meet link from the browser, quite useful while streaming.
Wat is Google Meet Link Hider?
Google Meet Link Hider is een Chrome-extensie ontwikkeld door reachdeepman, en de belangrijkste functie is "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Meet Link Hider
Download Google Meet Link Hider-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | jlfehbehocoadbdgmdkogjebkkeflmgm |
Officiële URL | https://chrome.google.com/webstore/detail/google-meet-link-hider/jlfehbehocoadbdgmdkogjebkkeflmgm |
Beschrijving | Hides title and URL of the Google Meet link from the browser, quite useful while streaming. |
Bestandsgrootte | 12.47 KB |
Aantal Installaties | 26 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2020-09-09 |
Publicatiedatum | 2020-09-09 |
Ontwikkelaar | reachdeepman |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |