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.”。
扩展截图
下载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.
扩展基本信息
名称 | |
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 } ] } |