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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Can use Native Messaging to enable click local file than open it directly."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Click link than open local file directly एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}