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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Can use Native Messaging to enable click local file than open it directly."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click link than open local file directly

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}