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によって開発されたChromeの拡張機能で、その主な機能は「Hides title and URL of the Google Meet link from the browser, quite useful while streaming.」です。
拡張機能のスクリーンショット
Google Meet Link Hider拡張機能のCRXファイルをダウンロード
Google Meet Link Hider拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } |