ADONIS Local Links

In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.

Co je ADONIS Local Links?

ADONIS Local Links je rozšíření Chrome vyvinuté leomleao, a jeho hlavní funkcí je „In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření ADONIS Local Links

Stáhněte si soubory rozšíření ADONIS Local Links ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        In Google Chrome, links to local files are disabled, unlike IE.
This extension allows you to open a link to a local file by clicking it.

This is a fork of the original extension, to specifically enable ADONIS links to open in Chrome.

[Security]
A malicious page can not open a local file without permission, because this extension reacts only to the click operation by the user.

[Others]
Personal information is not collected / used.
Source code is released to GitHub (see "Website" link).                    

Základní Informace o Rozšíření

Název ADONIS Local Links ADONIS Local Links
ID pmbkecepkfjhbdllaohjjocimmlggfcd
Oficiální URL https://chromewebstore.google.com/detail/adonis-local-links/pmbkecepkfjhbdllaohjjocimmlggfcd
Popis In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.
Velikost souboru 20.42 KB
Počet instalací 372
Aktuální Verze 0.6.3
Poslední Aktualizace 2020-06-19
Datum Vydání 2020-06-19
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář leomleao
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/leomleao/chrome-extension_open-local-file-link
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ADONIS Local Links",
    "version": "0.6.3",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.",
    "icons": {
        "16": "icon\/icon-16x16.png",
        "32": "icon\/icon-32x32.png",
        "48": "icon\/icon-64x64.png",
        "128": "icon\/icon-128x128.png"
    },
    "permissions": [
        "https:\/\/svado01001\/*",
        "http:\/\/svado01001\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/svado01001\/*",
                "http:\/\/svado01001\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "46.0"
}