Open with external application

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

Was ist Open with external application?

Open with external application ist eine Chrome-Erweiterung, die von Lorenz Cuno Klopfenstein entwickelt wurde, und ihr Hauptmerkmal ist "Opens any link of a webpage with a custom external application.".

Erweiterungsscreenshots

screenshot

Open with external application-Erweiterungs-CRX-Datei herunterladen

Laden Sie Open with external application-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        "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.                    

Grundlegende Informationen zur Erweiterung

Name Open with external application Open with external application
ID hccmhjmmfdfncbfpogafcbpaebclgjcp
Offizielle URL https://chrome.google.com/webstore/detail/open-with-external-applic/hccmhjmmfdfncbfpogafcbpaebclgjcp
Beschreibung Opens any link of a webpage with a custom external application.
Dateigröße 86.51 KB
Installationsanzahl 264
Aktuelle Version 1.0
Letztes Update 2013-02-06
Veröffentlichungsdatum 2013-02-06
Bewertung 3.25/5 Insgesamt 56 Bewertungen
Entwickler Lorenz Cuno Klopfenstein
Zahlungsart free
Hilfeseite URL https://bitbucket.org/lck/open-with-external-application
Unterstützte Sprachen 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
        }
    ]
}