Puffin Cloud Isolation Assistant

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

Puffin Cloud Isolation Assistant란 무엇입니까?

Puffin Cloud Isolation Assistant은(는) CloudMosa Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert unsafe direct web page access into isolated and display-only web page within existing web browsers."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Puffin Cloud Isolation Assistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension is designed to assist users to use CloudMosa's Puffin Cloud Isolation 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]                    

확장 프로그램 기본 정보

이름 Puffin Cloud Isolation Assistant Puffin Cloud Isolation Assistant
ID chhbokljdfgmepljjllnokgmcjpplell
공식 URL https://chromewebstore.google.com/detail/puffin-cloud-isolation-as/chhbokljdfgmepljjllnokgmcjpplell
설명 Convert unsafe direct web page access into isolated and display-only web page within existing web browsers.
파일 크기 1.62 MB
설치 횟수 514
현재 버전 1.0.0.878
최근 업데이트 2022-01-16
출시 날짜 2020-11-12
평점 4.50/5 총 4 개의 평점
개발자 CloudMosa Inc.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.puffin.com/cloud-isolation
도움말 페이지 URL https://help.puffin.com/feedback/?product=cloud-isolation
지원되는 언어 en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_NAME__",
    "description": "__MSG_DESCRIPTION__",
    "version": "1.0.0.878",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/puffin_cloud_isolation_assistant_48_on.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "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",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.puffin.com\/*",
                "https:\/\/*.puffin.app\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/snackbar.js",
                "js\/modal.js",
                "js\/logout.js"
            ]
        }
    ],
    "commands": {
        "new_isolation_tab": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "New isolation tab"
        }
    },
    "web_accessible_resources": [
        "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"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}