Intranet Filelink

This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)

Co je Intranet Filelink?

Intranet Filelink je rozšíření Chrome vyvinuté bigpaperaeroplane, a jeho hlavní funkcí je „This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Intranet Filelink

Stáhněte si soubory rozšíření Intranet Filelink 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í

                        This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Files are displayed within the browser - it is not possible to allow Chrome to open a file in File Explorer.
This extension has only been tested on Windows 10                    

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

Název Intranet Filelink Intranet Filelink
ID jkfmlkhlofhjnfddfolhjeienilmlgdo
Oficiální URL https://chromewebstore.google.com/detail/intranet-filelink/jkfmlkhlofhjnfddfolhjeienilmlgdo
Popis This extension allows Chrome to open filelinks on the local intranet (*://*.local/*)
Velikost souboru 14.46 KB
Počet instalací 166
Aktuální Verze 1.01
Poslední Aktualizace 2019-06-10
Datum Vydání 2019-06-10
Vývojář bigpaperaeroplane
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Intranet Filelink",
    "description": "This extension allows Chrome to open filelinks on the local intranet (*:\/\/*.local\/*)",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.01",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "Intranet Filelink"
    },
    "permissions": [
        "*:\/\/*.local\/*",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.local\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}