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ファイルをダウンロード

Open with external application拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        "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
        }
    ]
}