Pop-out Jitsi Meet

Open Jitsi Meet videos in pop-out windows.

Pop-out Jitsi Meet란 무엇입니까?

Pop-out Jitsi Meet은(는) jip.de.beer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open Jitsi Meet videos in pop-out windows."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Pop-out Jitsi Meet 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Useful if you want to arrange your video conference across multiple monitors, or if you want to grab a clean feed of the videos with e.g. OBS Studio.

Directly integrates with my Mappertje extension:
https://chrome.google.com/webstore/detail/okokapnhegofpbaeogkmbcaflmgiopkg/.

Check out the readme on GitHub for usage instructions.
https://github.com/Jip-Hop/jitsi-pop                    

확장 프로그램 기본 정보

이름 Pop-out Jitsi Meet Pop-out Jitsi Meet
ID boklbbjieahngbnhdmlhldjjibdnnbcn
공식 URL https://chromewebstore.google.com/detail/pop-out-jitsi-meet/boklbbjieahngbnhdmlhldjjibdnnbcn
설명 Open Jitsi Meet videos in pop-out windows.
파일 크기 168 KB
설치 횟수 2,260
현재 버전 2.0.3
최근 업데이트 2020-11-20
출시 날짜 2020-04-30
평점 4.83/5 총 6 개의 평점
개발자 jip.de.beer
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Jip-Hop/jitsi-pop
도움말 페이지 URL https://github.com/Jip-Hop/jitsi-pop
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pop-out Jitsi Meet",
    "version": "2.0.3",
    "manifest_version": 2,
    "description": "Open Jitsi Meet videos in pop-out windows.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "980": "icons\/icon980.png"
    },
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "web_accessible_resources": [
        "src\/inject\/*",
        "libs\/fontawesome-free\/*",
        "libs\/bootstrap\/css\/bootstrap.min.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.jit.si\/*",
                "https:\/\/8x8.vc\/*",
                "https:\/\/jitsi.riot.im\/*"
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/jip-hop.github.io\/jitsi-pop\/*",
            "https:\/\/jitsipop.debeer.it\/*",
            "https:\/\/jitsipop.tk\/*"
        ]
    }
}