Open with external application

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

Qu'est-ce que Open with external application ?

Open with external application est une extension Chrome développée par Lorenz Cuno Klopfenstein, et sa fonction principale est "Opens any link of a webpage with a custom external application.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open with external application

Téléchargez les fichiers d'extension Open with external application au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Open with external application Open with external application
ID hccmhjmmfdfncbfpogafcbpaebclgjcp
URL Officiel https://chrome.google.com/webstore/detail/open-with-external-applic/hccmhjmmfdfncbfpogafcbpaebclgjcp
Description Opens any link of a webpage with a custom external application.
Taille du Fichier 86.51 KB
Nombre d'Installations 264
Version Actuelle 1.0
Dernière Mise à Jour 2013-02-06
Date de Publication 2013-02-06
Évaluation 3.25/5 Total 56 Évaluations
Développeur Lorenz Cuno Klopfenstein
Type de Paiement free
URL de la Page d'Aide https://bitbucket.org/lck/open-with-external-application
Langues Prises en Charge 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
        }
    ]
}