Click link than open local file directly

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

O que é Click link than open local file directly?

Click link than open local file directly é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Can use Native Messaging to enable click local file than open it directly.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Click link than open local file directly

Baixe arquivos de extensão Click link than open local file directly no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Click link than open local file directly Click link than open local file directly
ID njacpndhhhiledgbfffdahoecjlakpne
URL Oficial https://chromewebstore.google.com/detail/click-link-than-open-loca/njacpndhhhiledgbfffdahoecjlakpne
Descrição Can use Native Messaging to enable click local file than open it directly.
Tamanho do Arquivo 12.93 KB
Contagem de Instalações 19
Versão Atual 1.0
Última Atualização 2021-10-20
Data de Publicação 2021-10-19
Desenvolvedor Unknown
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}