Medict
Medical Jargon Translator
什麼是Medict?
Medict是由https://medict.io開發的Chrome擴展程式,該擴展的主要功能是“Medical Jargon Translator”。
擴展截圖
下載Medict擴展crx文件
下載Medict擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Molluscum contagiosum? Marfan syndrome? Labyrinthitis? Medict is a Chrome extension that automatically translates any medical jargon you find on the web. Short, simple definitions show up when you hover over underlined words. Translations provided by NHS Choices. Works on laptops and desktops. The Medict Chrome extension was created at NHS Hack Day Cardiff 2015.
擴展基本資訊
名稱 | Medict |
ID | iailjilfhhpnlgjbkjgoalbdcnngbmfn |
官方網址 | https://chromewebstore.google.com/detail/medict/iailjilfhhpnlgjbkjgoalbdcnngbmfn |
簡介 | Medical Jargon Translator |
檔案大小 | 285 KB |
安裝次數 | 66 |
目前版本 | 0.0.1 |
更新時間 | 2015-06-27 |
上架時間 | 2015-06-27 |
開發者 | https://medict.io |
付費類型 | free |
說明頁面URL | http://himynamesdave.com |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Medict", "version": "0.0.1", "description": "Medical Jargon Translator", "background": { "scripts": [ ".\/eventpage.js" ], "persistent": false }, "content_scripts": [ { "all_frames": true, "js": [ ".\/jquery.min.js", ".\/bootstrap.js", ".\/contentscript.js" ], "css": [ ".\/contentscript.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_end" } ], "icons": { "32": "img\/medict-icon-32.png", "48": "img\/medict-icon-48.png", "128": "img\/medict-icon-128.png" }, "browser_action": { "default_title": "Translation Settings", "default_icon": { "19": "img\/medict-icon-32.png" } }, "options_page": "options.html", "web_accessible_resources": [ "jquery.min.js", "navbar.html", "last_update.html", "img\/medict-icon-32.png", "img\/medict-icon-48.png", "img\/medict-icon-128.png", "img\/NHS-CMYK.svg" ], "permissions": [ "storage" ], "manifest_version": 2 } |