Click link than open local file directly

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

什麼是Click link than open local file directly?

Click link than open local file directly是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Can use Native Messaging to enable click local file than open it directly.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Click link than open local file directly擴展crx文件

下載Click link than open local file directly擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Click link than open local file directly Click link than open local file directly
ID njacpndhhhiledgbfffdahoecjlakpne
官方網址 https://chromewebstore.google.com/detail/click-link-than-open-loca/njacpndhhhiledgbfffdahoecjlakpne
簡介 Can use Native Messaging to enable click local file than open it directly.
檔案大小 12.93 KB
安裝次數 19
目前版本 1.0
更新時間 2021-10-20
上架時間 2021-10-19
開發者 Unknown
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}