Puffin Cloud Isolation Assistant EE

Convert unsafe direct web page access into isolated and display-only web page within existing web browsers.

Puffin Cloud Isolation Assistant EE là gì?

Puffin Cloud Isolation Assistant EE là một tiện ích mở rộng Chrome được phát triển bởi CloudMosa Inc., và tính năng chính của nó là "Convert unsafe direct web page access into isolated and display-only web page within existing web browsers.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Puffin Cloud Isolation Assistant EE

Tải xuống các tệp mở rộng Puffin Cloud Isolation Assistant EE 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

                        This extension is designed to assist users to use CloudMosa's Puffin Cloud Isolation Enterprise service.

## What the extension does:

★ Auto redirect URLs to the remote browsers running in CloudMosa's data center; 
★ Allow you to choose your preferred isolation experience: isolate current tab, isolate new tabs; 

==============================

Puffin Cloud Isolation is currently in beta.

Puffin Cloud Isolation: https://www.puffin.com/cloud-isolation

Report bugs and suggestions: [email protected]                    

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

Tên Puffin Cloud Isolation Assistant EE Puffin Cloud Isolation Assistant EE
ID balfmajfkdffkbojcpanadbaaiobmgaf
URL Chính Thức https://chromewebstore.google.com/detail/puffin-cloud-isolation-as/balfmajfkdffkbojcpanadbaaiobmgaf
Mô tả Convert unsafe direct web page access into isolated and display-only web page within existing web browsers.
Kích Thước Tệp 1.73 MB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.1.0.1588
Cập Nhật Lần Cuối 2022-05-16
Ngày Phát Hành 2022-05-03
Nhà Phát Triển CloudMosa Inc.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.puffin.com/cloud-isolation
URL Trang Trợ Giúp https://help.puffin.com/feedback/?product=cloud-isolation
Ngôn Ngữ Được Hỗ Trợ en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_ENTERPRISENAME__",
    "description": "__MSG_DESCRIPTION__",
    "version": "1.1.0.1588",
    "options_page": "options.html",
    "action": {
        "default_icon": "img\/puffin_cloud_isolation_assistant_48_on.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "omnibox": {
        "keyword": "isolation"
    },
    "icons": {
        "16": "img\/puffin_cloud_isolation_assistant_16_on.png",
        "48": "img\/puffin_cloud_isolation_assistant_48_on.png",
        "128": "img\/puffin_cloud_isolation_assistant_128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "contextMenus",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/snackbar.js"
            ]
        }
    ],
    "commands": {
        "new_isolation_tab": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "New isolation tab"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject_html\/snackbar.html",
                "inject_js\/patch_window_object.js",
                "css\/snackbar.css",
                "img\/puffin_cloud_isolation_assistant_48_on.png",
                "img\/puffin_cloud_isolation_assistant_48_off.png",
                "img\/logo_puffin_cloud_isolation_assistant.png",
                "img\/btn_blue_normal.png",
                "img\/btn_blue_hover.png",
                "img\/btn_red_normal.png",
                "img\/btn_red_hover.png",
                "img\/btn_checkbox_on.png",
                "img\/btn_checkbox_off.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}