ADONIS Local Links
In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.
ADONIS Local Links란 무엇입니까?
ADONIS Local Links은(는) leomleao에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths."입니다.
확장 프로그램 스크린샷
ADONIS Local Links 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
In Google Chrome, links to local files are disabled, unlike IE. This extension allows you to open a link to a local file by clicking it. This is a fork of the original extension, to specifically enable ADONIS links to open in Chrome. [Security] A malicious page can not open a local file without permission, because this extension reacts only to the click operation by the user. [Others] Personal information is not collected / used. Source code is released to GitHub (see "Website" link).
확장 프로그램 기본 정보
이름 | |
ID | pmbkecepkfjhbdllaohjjocimmlggfcd |
공식 URL | https://chromewebstore.google.com/detail/adonis-local-links/pmbkecepkfjhbdllaohjjocimmlggfcd |
설명 | In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths. |
파일 크기 | 20.42 KB |
설치 횟수 | 372 |
현재 버전 | 0.6.3 |
최근 업데이트 | 2020-06-19 |
출시 날짜 | 2020-06-19 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | leomleao |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/leomleao/chrome-extension_open-local-file-link |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ADONIS Local Links", "version": "0.6.3", "manifest_version": 2, "default_locale": "en", "description": "In Google Chrome, local files links are disabled, this extension enables you to open them and also ADONIS UNC paths.", "icons": { "16": "icon\/icon-16x16.png", "32": "icon\/icon-32x32.png", "48": "icon\/icon-64x64.png", "128": "icon\/icon-128x128.png" }, "permissions": [ "https:\/\/svado01001\/*", "http:\/\/svado01001\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/svado01001\/*", "http:\/\/svado01001\/*" ], "js": [ "content_script.js" ] } ], "minimum_chrome_version": "46.0" } |