HipChat Meetings
A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.
ما هو HipChat Meetings؟
HipChat Meetings هو إضافة Chrome تم تطويرها بواسطة https://hipchat.me، والميزة الرئيسية لها هي "A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HipChat Meetings
قم بتنزيل ملفات الامتداد HipChat Meetings بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | HipChat Meetings |
ID | kdlonpjcbkjndbpboifcdcgeeciffoep |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hipchat-meetings/kdlonpjcbkjndbpboifcdcgeeciffoep |
الوصف | A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat. |
حجم الملف | 98.93 KB |
عدد التثبيتات | 2,347 |
النسخة الحالية | 0.2.6.2 |
آخر تحديث | 2017-01-24 |
تاريخ النشر | 2017-01-24 |
تقييم | 4.69/5 مجموع تقييمات 16 |
المطور | https://hipchat.me |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HipChat Meetings", "description": "A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.", "version": "0.2.6.2", "minimum_chrome_version": "34", "icons": { "128": "hipchat-logo-128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "desktopCapture", "https:\/\/calendar.google.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.hipchat.me\/*", "*:\/\/*.atlassian.io\/*", "*:\/\/pawel.jitsi.net\/*", "*:\/\/hristo.jitsi.net\/*", "*:\/\/localhost:*\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*", "https:\/\/outlook.live.com\/owa\/*" ], "js": [ "jquery.js", "RandomUtil.js", "RoomnameGenerator.js", "meet-calendar.js" ], "css": [ "\/css\/all.css" ], "all_frames": true, "run_at": "document_end" } ], "web_accessible_resources": [ "hipchat-logo-128x128.png", "hipchat-logo-white-48x48.png" ] } |