RemotePC Scheduler
Schedule RemotePC Meetings directly from Calendars.
RemotePC Scheduler क्या है?
RemotePC Scheduler IDrive Inc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Schedule RemotePC Meetings directly from Calendars."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RemotePC Scheduler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Schedule RemotePC meetings directly from Google/Yahoo/Outlook Calendars. The RemotePC Chrome Extension allows participants to schedule RemotePC cloud meetings directly from Google/Yahoo/Outlook Calendar. With the click of a button, you can start an instant meeting or schedule a future meeting. The meeting URL and information is sent via a Google/Yahoo/Outlook Calendar invitation so the attendee can join with a single-click. RemotePC Chrome Extension allows you to: • Start an instant meeting • Schedule a meeting • Join a meeting To learn more about RemotePC, please visit https://www.remotepc.com
एक्सटेंशन की मूल जानकारी
नाम | RemotePC Scheduler |
ID | bpmilapammjhbeldoleojjclaihdbdoo |
आधिकारिक URL | https://chromewebstore.google.com/detail/remotepc-scheduler/bpmilapammjhbeldoleojjclaihdbdoo |
विवरण | Schedule RemotePC Meetings directly from Calendars. |
फ़ाइल का आकार | 238 KB |
स्थापना संख्या | 3,331 |
वर्तमान संस्करण | 0.2.7 |
अंतिम अपडेट | 2021-09-22 |
प्रकाशन तिथि | 2020-06-12 |
डेवलपर | IDrive Inc |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.remotepc.com |
सहायता पृष्ठ URL | https://www.remotepc.com/support.htm |
गोपनीयता नीति पृष्ठ URL | https://www.idrive.com/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RemotePC Scheduler", "version": "0.2.7", "manifest_version": 2, "description": "Schedule RemotePC Meetings directly from Calendars.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "js\/jquery\/jquery.min.js", "src\/API.js", "src\/bg\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "RemotePC Scheduler", "default_popup": "src\/browser_action\/popup.html" }, "permissions": [ "storage", "https:\/\/meetapi.remotepc.com\/api\/*", "https:\/\/meet.remotepc.com\/", "https:\/\/meeting.remotepc.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "css": [ "src\/inject\/inject.css", "css\/remotepc_btn.css" ], "js": [ "js\/moment.min.js", "js\/jquery\/jquery.min.js", "src\/DateTimeHelper.js", "src\/MeetingScheduler.js", "src\/API.js", "src\/inject\/GoogleEventConverter.js", "src\/inject\/GoogleEventPopupConverter.js", "src\/inject\/google_inject.js" ] }, { "matches": [ "https:\/\/outlook.live.com\/calendar\/*" ], "css": [ "src\/inject\/inject.css", "css\/remotepc_btn.css" ], "js": [ "js\/moment.min.js", "js\/jquery\/jquery.min.js", "src\/DateTimeHelper.js", "src\/MeetingScheduler.js", "src\/API.js", "src\/inject\/GoogleEventConverter.js", "src\/inject\/OutlookConverter.js", "src\/inject\/OutlookCalloutConverter.js", "src\/inject\/outlook_inject.js" ] }, { "matches": [ "https:\/\/calendar.yahoo.com\/*" ], "css": [ "src\/inject\/inject.css", "css\/remotepc_btn.css" ], "js": [ "js\/moment.min.js", "js\/jquery\/jquery.min.js", "src\/DateTimeHelper.js", "src\/MeetingScheduler.js", "src\/API.js", "src\/inject\/GoogleEventConverter.js", "src\/inject\/YahooConverter.js", "src\/inject\/YahooEventHoverConverter.js", "src\/inject\/YahooSmallPopupConverter.js", "src\/inject\/yahoo_inject.js" ] } ], "web_accessible_resources": [ "img\/*", "icons\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google.com https:\/\/www.gstatic.com; object-src 'self'" } |