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
公式URL 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"
            ]
        }
    ]
}