RemotePC Scheduler

Schedule RemotePC Meetings directly from Calendars.

什麼是RemotePC Scheduler?

RemotePC Scheduler是由IDrive Inc開發的Chrome擴展程式,該擴展的主要功能是“Schedule RemotePC Meetings directly from Calendars.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載RemotePC Scheduler擴展crx文件

下載RemotePC Scheduler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 RemotePC Scheduler
ID bpmilapammjhbeldoleojjclaihdbdoo
官方網址 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'"
}