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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |