Virtel WebAccess Extender

Enables Virtel WebAccess advanced features and OS integration.

Cos'è Virtel WebAccess Extender?

Virtel WebAccess Extender è un'estensione di Chrome sviluppata da [email protected], e la sua funzione principale è "Enables Virtel WebAccess advanced features and OS integration.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Virtel WebAccess Extender

Scarica i file di estensione Virtel WebAccess Extender in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.*                    

Informazioni di Base sull'Estensione

Nome Virtel WebAccess Extender Virtel WebAccess Extender
ID fidkdjmpgoimefkibgbljlfkicpcpkpl
URL Ufficiale https://chromewebstore.google.com/detail/virtel-webaccess-extender/fidkdjmpgoimefkibgbljlfkicpcpkpl
Descrizione Enables Virtel WebAccess advanced features and OS integration.
Dimensione del File 19.23 KB
Conteggio Installazioni 12,697
Versione Corrente 40.0
Ultimo Aggiornamento 2017-07-19
Data di Pubblicazione 2017-07-19
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.syspertec.com
Lingue Supportate 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"
            ]
        }
    ]
}