Open with external application

Opens any link of a webpage with a custom external application.

Open with external application란 무엇입니까?

Open with external application은(는) Lorenz Cuno Klopfenstein에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens any link of a webpage with a custom external application."입니다.

확장 프로그램 스크린샷

screenshot

Open with external application 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        "Open with external application" (in dire need of a better name) is an extension for the Google Chrome web browser. It allows the user to select any executable and use links of the web pages s/he is browsing as a command line parameter when launching such executable.

The user might, for instance, decide to open a target link in Firefox, Opera, Safari or any other application capable of handling an URL parameter.

Parts of the extension (namely the native NPAPI plug-ins that launch the external application) are taken from the SimpleGet Chromium extension.                    

확장 프로그램 기본 정보

이름 Open with external application Open with external application
ID hccmhjmmfdfncbfpogafcbpaebclgjcp
공식 URL https://chrome.google.com/webstore/detail/open-with-external-applic/hccmhjmmfdfncbfpogafcbpaebclgjcp
설명 Opens any link of a webpage with a custom external application.
파일 크기 86.51 KB
설치 횟수 264
현재 버전 1.0
최근 업데이트 2013-02-06
출시 날짜 2013-02-06
평점 3.25/5 총 56 개의 평점
개발자 Lorenz Cuno Klopfenstein
결제 유형 free
도움말 페이지 URL https://bitbucket.org/lck/open-with-external-application
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open with external application",
    "description": "Opens any link of a webpage with a custom external application.",
    "version": "1.0",
    "icons": {
        "16": "icons\/16-logo.png",
        "32": "icons\/32-logo.png",
        "48": "icons\/48-logo.png",
        "128": "icons\/128-logo.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "page": "open-in.html"
    },
    "options_page": "options.html",
    "plugins": [
        {
            "path": "npsimpleGetPlugin.dll",
            "public": false
        },
        {
            "path": "libsimpleGetPlugin.so",
            "public": false
        },
        {
            "path": "libsimpleGetPlugin64.so",
            "public": false
        }
    ]
}