Virtel WebAccess Extender

Enables Virtel WebAccess advanced features and OS integration.

Qu'est-ce que Virtel WebAccess Extender ?

Virtel WebAccess Extender est une extension Chrome développée par [email protected], et sa fonction principale est "Enables Virtel WebAccess advanced features and OS integration.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Virtel WebAccess Extender

Téléchargez les fichiers d'extension Virtel WebAccess Extender au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Virtel WebAccess Extender Virtel WebAccess Extender
ID fidkdjmpgoimefkibgbljlfkicpcpkpl
URL Officiel https://chromewebstore.google.com/detail/virtel-webaccess-extender/fidkdjmpgoimefkibgbljlfkicpcpkpl
Description Enables Virtel WebAccess advanced features and OS integration.
Taille du Fichier 19.23 KB
Nombre d'Installations 12,697
Version Actuelle 40.0
Dernière Mise à Jour 2017-07-19
Date de Publication 2017-07-19
Évaluation 5.00/5 Total 4 Évaluations
Développeur [email protected]
Type de Paiement free
Site Web de l'Extension http://www.syspertec.com
Langues Prises en Charge 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"
            ]
        }
    ]
}