RedRain : Access local files.
Open a link to a local file or execute the window.open from within the iframe.
RedRain : Access local files.란 무엇입니까?
RedRain : Access local files.은(는) tailor.dharmesh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open a link to a local file or execute the window.open from within the iframe."입니다.
확장 프로그램 스크린샷
RedRain : Access local files. 확장 프로그램 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. Execute window.open from iframe from cross origin. It is disabled by default 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).
확장 프로그램 기본 정보
이름 | RedRain : Access local files. |
ID | cnaknjccacfkfiadnoehebjdaapckljf |
공식 URL | https://chromewebstore.google.com/detail/redrain-access-local-file/cnaknjccacfkfiadnoehebjdaapckljf |
설명 | Open a link to a local file or execute the window.open from within the iframe. |
파일 크기 | 5.37 KB |
설치 횟수 | 102 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2021-04-06 |
출시 날짜 | 2020-04-27 |
개발자 | tailor.dharmesh |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dharmeshtailor/chrome-extension---Access-Local-Files |
도움말 페이지 URL | https://github.com/dharmeshtailor/chrome-extension---Access-Local-Files |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extension_name__", "version": "1.0.1", "manifest_version": 2, "default_locale": "en", "description": "__MSG_extension_description__", "icons": { "128": "icon\/icon.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "minimum_chrome_version": "46.0" } |