.URL Handler
An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
.URL Handler란 무엇입니까?
.URL Handler은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details."입니다.
확장 프로그램 스크린샷
.URL Handler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A really simple plugin to fix a slight but annoying problem with current versions of Chrome. The extension is called when a local *.url file is opened and automatically redirects the tab to the URL contained within the file rather than simply displaying it in plain text. To see more about the issue see here: http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary Note: This extension requires the "Allow access to file URLs" permission.
확장 프로그램 기본 정보
이름 | .URL Handler |
ID | nhmccpjmdhejpfhafcfajkgifkmjhkgf |
공식 URL | https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf |
설명 | An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details. |
파일 크기 | 38.38 KB |
설치 횟수 | 8,776 |
현재 버전 | 1.0 |
최근 업데이트 | 2012-09-03 |
출시 날짜 | 2012-09-03 |
평점 | 3.08/5 총 26 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
도움말 페이지 URL | http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": ".URL Handler", "version": "1.0", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "description": "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.", "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "file:\/\/*.url" ], "js": [ "jquery.js", "openurl.js" ] } ] } |