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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |