webjeans
bluejeans meetings via browser
Wat is webjeans?
webjeans is een Chrome-extensie ontwikkeld door Andrea Giammarchi, en de belangrijkste functie is "bluejeans meetings via browser".
Extensie Screenshots
Download het CRX-bestand van de extensie webjeans
Download webjeans-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 👋
Basisinformatie over de Extensie
Naam | webjeans |
ID | genohdaomlakhpdmffplnefmkacmadlo |
Officiële URL | https://chromewebstore.google.com/detail/webjeans/genohdaomlakhpdmffplnefmkacmadlo |
Beschrijving | bluejeans meetings via browser |
Bestandsgrootte | 12.71 KB |
Aantal Installaties | 103 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2020-05-15 |
Publicatiedatum | 2020-05-15 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Andrea Giammarchi |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/WebReflection/webjeans/ |
Help Pagina-URL | https://github.com/WebReflection/webjeans/ |
Ondersteunde Talen | 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" } } |