Virtel WebAccess Extender

Enables Virtel WebAccess advanced features and OS integration.

什麼是Virtel WebAccess Extender?

Virtel WebAccess Extender是由[email protected]開發的Chrome擴展程式,該擴展的主要功能是“Enables Virtel WebAccess advanced features and OS integration.”。

擴展截圖

screenshot

下載Virtel WebAccess Extender擴展crx文件

下載Virtel WebAccess Extender擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This Chrome extension is intended for "Virtel Web Access" users (compatible with Chrome version 20 or more).

It grants access to the System Clipboard from Virtel web-pages (via the cut/copy/paste commands), so that data can be shared between Chrome and other applications.

In order to have the system-wide copy/paste feature activated, you have to configure the access rights using the extension's options panel.

The domain URLs can end with a wildcard (the '*' character can only appear at the very end of the URL). If there is no wildcard, then the provided URL must match exactly the expected domain URL.

Examples of valid URLs:

   https://localhost:8080
   https://127.0.0.1:8080
   http://127.0.0.1:*
   http://192.168.0.*                    

擴展基本資訊

名稱 Virtel WebAccess Extender Virtel WebAccess Extender
ID fidkdjmpgoimefkibgbljlfkicpcpkpl
官方網址 https://chromewebstore.google.com/detail/virtel-webaccess-extender/fidkdjmpgoimefkibgbljlfkicpcpkpl
簡介 Enables Virtel WebAccess advanced features and OS integration.
檔案大小 19.23 KB
安裝次數 12,697
目前版本 40.0
更新時間 2017-07-19
上架時間 2017-07-19
評分 5.00/5 共 4 次評分
開發者 [email protected]
付費類型 free
擴展官網 http://www.syspertec.com
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Virtel WebAccess Extender",
    "description": "Enables Virtel WebAccess advanced features and OS integration.",
    "version": "40.0",
    "manifest_version": 2,
    "minimum_chrome_version": "30.0",
    "options_page": "options\/options.html",
    "icons": {
        "64": "icon_64.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' ; object-src 'self' ",
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "worker.js",
                "settings.js"
            ]
        }
    ]
}