Enable local file links

Make it possible to open by click a link to a local file that is disabled by Chrome.

Enable local file links란 무엇입니까?

Enable local file links은(는) https://peruse.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make it possible to open by click a link to a local file that is disabled by Chrome."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Enable local file 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.

[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).                    

확장 프로그램 기본 정보

이름 Enable local file links Enable local file links
ID hbmcflodcpmdbpelmchgmekkbdbmlmfh
공식 URL https://chromewebstore.google.com/detail/enable-local-file-links/hbmcflodcpmdbpelmchgmekkbdbmlmfh
설명 Make it possible to open by click a link to a local file that is disabled by Chrome.
파일 크기 6.39 KB
설치 횟수 104,844
현재 버전 0.8.1
최근 업데이트 2021-01-28
출시 날짜 2021-01-18
평점 5.00/5 총 1 개의 평점
개발자 https://peruse.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/peruseio/open-local-link
지원되는 언어 en,fr,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "0.8.1",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "128": "icon\/icon.png"
    },
    "permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "46.0"
}