Google Meet Link Hider
Hides title and URL of the Google Meet link from the browser, quite useful while streaming.
Google Meet Link Hider là gì?
Google Meet Link Hider là một tiện ích mở rộng Chrome được phát triển bởi reachdeepman, và tính năng chính của nó là "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Meet Link Hider
Tải xuống các tệp mở rộng Google Meet Link Hider dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jlfehbehocoadbdgmdkogjebkkeflmgm |
URL Chính Thức | https://chrome.google.com/webstore/detail/google-meet-link-hider/jlfehbehocoadbdgmdkogjebkkeflmgm |
Mô tả | Hides title and URL of the Google Meet link from the browser, quite useful while streaming. |
Kích Thước Tệp | 12.47 KB |
Số Lần Cài Đặt | 26 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-09-09 |
Ngày Phát Hành | 2020-09-09 |
Nhà Phát Triển | reachdeepman |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |