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.”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Google Meet Link Hider Google Meet Link Hider
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
}