Click link than open local file directly

Can use Native Messaging to enable click local file than open it directly.

Co je Click link than open local file directly?

Click link than open local file directly je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Can use Native Messaging to enable click local file than open it directly.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Click link than open local file directly

Stáhněte si soubory rozšíření Click link than open local file directly 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 you to open a local file link "file://" directly (not download). You only write the manifest file, reg file and your local program on local computer. You can follow chrome development guides (https://developer.chrome.com/docs/apps/nativeMessaging/).

This program is use json format to send the message to local program. Please use "message" to receive the file name and "host" to receive the host name.

You can use any program language to write the local program to receive the json format send from the chrome extension.                    

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

Název Click link than open local file directly Click link than open local file directly
ID njacpndhhhiledgbfffdahoecjlakpne
Oficiální URL https://chromewebstore.google.com/detail/click-link-than-open-loca/njacpndhhhiledgbfffdahoecjlakpne
Popis Can use Native Messaging to enable click local file than open it directly.
Velikost souboru 12.93 KB
Počet instalací 19
Aktuální Verze 1.0
Poslední Aktualizace 2021-10-20
Datum Vydání 2021-10-19
Vývojář Unknown
E-mail [email protected]
Typ Platby free
Podporované Jazyky en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "1.0",
    "manifest_version": 3,
    "description": "__MSG_extension_description__",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "nativeMessaging"
    ]
}