Chrome Extension for VMware Cloud Director

Leverages VMware Cloud Director as a proxy for connecting to SDDCs

Chrome Extension for VMware Cloud Director là gì?

Chrome Extension for VMware Cloud Director là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Leverages VMware Cloud Director as a proxy for connecting to SDDCs".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrome Extension for VMware Cloud Director

Tải xuống các tệp mở rộng Chrome Extension for VMware Cloud Director 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 Chrome extension helps establish trust between VMware Cloud Director (VCD) and vCenter Servers managed by VCD such that users can navigate to vCenter Servers directly from VCD UI given they provide appropriate credentials. With this extension the browser will be automatically configured with the relevant proxy settings allowing VCD to act as a proxy for accessing vCenter Servers.  The extension will also perform authentication for you. Users have to verify they trust the extension as part of this workflow. The extension needs several permissions (proxy, storage, tabs, webRequest, webRequestBlocking) to automatically configure proxy and display state of proxy setup to the user. For questions, reach out to your cloud provider.                    

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

Tên Chrome Extension for VMware Cloud Director Chrome Extension for VMware Cloud Director
ID omhjmmilocdnjgploallbdoicffjnmpl
URL Chính Thức https://chromewebstore.google.com/detail/chrome-extension-for-vmwa/omhjmmilocdnjgploallbdoicffjnmpl
Mô tả Leverages VMware Cloud Director as a proxy for connecting to SDDCs
Kích Thước Tệp 30.93 KB
Số Lần Cài Đặt 597
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-05-29
Ngày Phát Hành 2020-05-28
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "version": "1.0.0",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "author": "VMware, Inc.",
    "permissions": [
        "",
        "proxy",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "constants.js",
            "utils.js",
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/tenant\/*"
            ],
            "js": [
                "content\/contentScript.js"
            ]
        }
    ]
}