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 là gì?

Click link than open local file directly là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Can use Native Messaging to enable click local file than open it directly.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Click link than open local file directly

Tải xuống các tệp mở rộng Click link than open local file directly dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Click link than open local file directly Click link than open local file directly
ID njacpndhhhiledgbfffdahoecjlakpne
URL Chính Thức https://chromewebstore.google.com/detail/click-link-than-open-loca/njacpndhhhiledgbfffdahoecjlakpne
Mô tả Can use Native Messaging to enable click local file than open it directly.
Kích Thước Tệp 12.93 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-10-20
Ngày Phát Hành 2021-10-19
Nhà Phát Triển Unknown
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}