webjeans

bluejeans meetings via browser

O que é webjeans?

webjeans é uma extensão do Chrome desenvolvida por Andrea Giammarchi, e sua principal característica é "bluejeans meetings via browser".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão webjeans

Baixe arquivos de extensão webjeans no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 👋                    

Informações Básicas da Extensão

Nome webjeans webjeans
ID genohdaomlakhpdmffplnefmkacmadlo
URL Oficial https://chromewebstore.google.com/detail/webjeans/genohdaomlakhpdmffplnefmkacmadlo
Descrição bluejeans meetings via browser
Tamanho do Arquivo 12.71 KB
Contagem de Instalações 103
Versão Atual 0.0.3
Última Atualização 2020-05-15
Data de Publicação 2020-05-15
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Andrea Giammarchi
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/WebReflection/webjeans/
URL da Página de Ajuda https://github.com/WebReflection/webjeans/
Idiomas Suportados 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"
    }
}