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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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 } ] } |