Virtel WebAccess Extender

Enables Virtel WebAccess advanced features and OS integration.

Virtel WebAccess Extender là gì?

Virtel WebAccess Extender là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Enables Virtel WebAccess advanced features and OS integration.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Virtel WebAccess Extender

Tải xuống các tệp mở rộng Virtel WebAccess Extender 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 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.*                    

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

Tên Virtel WebAccess Extender Virtel WebAccess Extender
ID fidkdjmpgoimefkibgbljlfkicpcpkpl
URL Chính Thức https://chromewebstore.google.com/detail/virtel-webaccess-extender/fidkdjmpgoimefkibgbljlfkicpcpkpl
Mô tả Enables Virtel WebAccess advanced features and OS integration.
Kích Thước Tệp 19.23 KB
Số Lần Cài Đặt 12,697
Phiên Bản Hiện Tại 40.0
Cập Nhật Lần Cuối 2017-07-19
Ngày Phát Hành 2017-07-19
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.syspertec.com
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}