Rainbow Click2Call

Manage your phone calls using Rainbow Click2Call

Rainbow Click2Call là gì?

Rainbow Click2Call là một tiện ích mở rộng Chrome được phát triển bởi https://openrainbow.com, và tính năng chính của nó là "Manage your phone calls using Rainbow Click2Call".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Rainbow Click2Call 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

                        The Rainbow Click2Call extension allows you to make and receive phone calls via your Alcatel-Lucent Enterprise communication system (OmniPCX Enterprise, OXO Connect) using any device (your computer, your office phone or any phone number).

You can:
. Select the device you want to use for making and receiving phone calls.
. Click to call phone numbers available on any Chrome web page (select, right-click and call).
. Make phone calls from your Gmail application.
. Type or copy/paste a phone number using a dial pad and start a phone call.
. Receive alerts for incoming phone calls: know instantly who is calling, answer or decline the call.
. Clear or cancel a phone call.
. Place (retrieve) the active phone call on hold.
. For VoIP phone calls, mute (unmute) the microphone and send out-of-band DTMF signals.
. Forward your phone calls to your voicemail or any phone number when you are unavailable or out of office.
. Use your Rainbow account to sign in or use your Google credentials (single sign-on - SSO -  using OAuth).

Rainbow Click2Call extension requires:
. A Rainbow account with a Business or Enterprise service plan.
. A PBX extension associated with your Rainbow account.
. A WebRTC Gateway for managing VoIP calls.                    

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

Tên Rainbow Click2Call Rainbow Click2Call
ID oghmpbfpplffokeiljfeadlgjbejnghd
URL Chính Thức https://chromewebstore.google.com/detail/rainbow-click2call/oghmpbfpplffokeiljfeadlgjbejnghd
Mô tả Manage your phone calls using Rainbow Click2Call
Kích Thước Tệp 3.96 MB
Số Lần Cài Đặt 1,805
Phiên Bản Hiện Tại 3.1.0
Cập Nhật Lần Cuối 2023-01-28
Ngày Phát Hành 2020-06-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://openrainbow.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://openrainbow.com
URL Trang Trợ Giúp https://support.openrainbow.com
URL Trang Chính Sách Bảo Mật https://www.al-enterprise.com/en/rainbow/data-privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rainbow Click2Call",
    "description": "Manage your phone calls using Rainbow Click2Call",
    "version": "3.1.0",
    "icons": {
        "16": "Assets\/Icons\/logo16.png",
        "48": "Assets\/Icons\/logo48.png",
        "128": "Assets\/Icons\/logo128.png"
    },
    "manifest_version": 3,
    "action": {
        "default_title": "Rainbow Click2Call",
        "default_icon": "Assets\/Icons\/logo128.png"
    },
    "background": {
        "service_worker": ".\/ServiceWorkerWrapper.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.openrainbow.io\/*"
            ],
            "js": [
                "ContentScripts\/Oauth.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "ContentScripts\/inboxsdk.js",
                "ContentScripts\/Gmail.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/dev-googlec2c.openrainbow.io\/telhandler\/*",
                "https:\/\/googlec2c.openrainbow.io\/telhandler\/*",
                "https:\/\/int-googlec2c.openrainbow.io\/telhandler\/*",
                "https:\/\/red-googlec2c.openrainbow.io\/telhandler\/*"
            ],
            "js": [
                "ContentScripts\/TelScript.js"
            ]
        }
    ],
    "commands": {
        "save-logs": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Save logs"
        },
        "toggle-verbose-logs": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Disable\/Enable rainbow SDK logs"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "activeTab",
        "notifications",
        "tabs",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/openrainbow.com",
        "https:\/\/openrainbow.net",
        "https:\/\/fonts.gstatic.com",
        "https:\/\/fonts.google.com",
        "https:\/\/mail.google.com\/",
        "*:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}