webjeans

bluejeans meetings via browser

webjeans란 무엇입니까?

webjeans은(는) Andrea Giammarchi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "bluejeans meetings via browser"입니다.

확장 프로그램 스크린샷

screenshot

webjeans 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Every time I click some BlueJeans link from a calendar or elsewhere, their page keeps asking me to download their app, offering down the page a link to go to the Website, WebRTC based, version.

As a Web developer, and a Web lover, I'm tired of services that keep forcing users to use their app, specially when users are on Linux, as it is in my case, where their app doesn't even work too well.

This extension does one thing and one thing only: it redirects you to the WebRTC version of the meeting if you land on a bluejeans related URL, and that's all folks 👋                    

확장 프로그램 기본 정보

이름 webjeans webjeans
ID genohdaomlakhpdmffplnefmkacmadlo
공식 URL https://chromewebstore.google.com/detail/webjeans/genohdaomlakhpdmffplnefmkacmadlo
설명 bluejeans meetings via browser
파일 크기 12.71 KB
설치 횟수 103
현재 버전 0.0.3
최근 업데이트 2020-05-15
출시 날짜 2020-05-15
평점 5.00/5 총 1 개의 평점
개발자 Andrea Giammarchi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/WebReflection/webjeans/
도움말 페이지 URL https://github.com/WebReflection/webjeans/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "webjeans",
    "short_name": "webjeans",
    "version": "0.0.3",
    "description": "bluejeans meetings via browser",
    "author": "Andrea Giammarchi",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "20": "icons\/20.png",
            "32": "icons\/32.png",
            "40": "icons\/40.png"
        },
        "default_title": "webjeans"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/webjeans.js"
            ],
            "matches": [
                "*:\/\/*.bluejeans.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    }
}