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文件

下载Puffin Cloud Isolation Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
}