Open with external application

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

Что такое Open with external application?

Open with external application - это расширение Chrome, разработанное Lorenz Cuno Klopfenstein, и его основная функция - "Opens any link of a webpage with a custom external application.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Open with external application

Скачайте файлы расширений 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
        }
    ]
}