Virtel WebAccess Extender

Enables Virtel WebAccess advanced features and OS integration.

Virtel WebAccess Extender क्या है?

Virtel WebAccess Extender [email protected] द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables Virtel WebAccess advanced features and OS integration."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Virtel WebAccess Extender एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}