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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}