webjeans
bluejeans meetings via browser
webjeans क्या है?
webjeans Andrea Giammarchi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "bluejeans meetings via browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में webjeans एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |