RemotePC Scheduler

Schedule RemotePC Meetings directly from Calendars.

RemotePC Scheduler là gì?

RemotePC Scheduler là một tiện ích mở rộng Chrome được phát triển bởi IDrive Inc, và tính năng chính của nó là "Schedule RemotePC Meetings directly from Calendars.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng RemotePC Scheduler

Tải xuống các tệp mở rộng RemotePC Scheduler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên RemotePC Scheduler RemotePC Scheduler
ID bpmilapammjhbeldoleojjclaihdbdoo
URL Chính Thức https://chromewebstore.google.com/detail/remotepc-scheduler/bpmilapammjhbeldoleojjclaihdbdoo
Mô tả Schedule RemotePC Meetings directly from Calendars.
Kích Thước Tệp 238 KB
Số Lần Cài Đặt 3,331
Phiên Bản Hiện Tại 0.2.7
Cập Nhật Lần Cuối 2021-09-22
Ngày Phát Hành 2020-06-12
Nhà Phát Triển IDrive Inc
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.remotepc.com
URL Trang Trợ Giúp https://www.remotepc.com/support.htm
URL Trang Chính Sách Bảo Mật https://www.idrive.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
}