Click link than open local file directly
Can use Native Messaging to enable click local file than open it directly.
Qu'est-ce que Click link than open local file directly ?
Click link than open local file directly est une extension Chrome développée par Unknown, et sa fonction principale est "Can use Native Messaging to enable click local file than open it directly.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Click link than open local file directly
Téléchargez les fichiers d'extension Click link than open local file directly au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Click link than open local file directly |
ID | njacpndhhhiledgbfffdahoecjlakpne |
URL Officiel | https://chromewebstore.google.com/detail/click-link-than-open-loca/njacpndhhhiledgbfffdahoecjlakpne |
Description | Can use Native Messaging to enable click local file than open it directly. |
Taille du Fichier | 12.93 KB |
Nombre d'Installations | 19 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-10-20 |
Date de Publication | 2021-10-19 |
Développeur | Unknown |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |