Learn by Osmosis
Learn by Osmosis while you browse your favorite websites.
什麼是Learn by Osmosis?
Learn by Osmosis是由osmosis開發的Chrome擴展程式,該擴展的主要功能是“Learn by Osmosis while you browse your favorite websites.”。
擴展截圖
下載Learn by Osmosis擴展crx文件
下載Learn by Osmosis擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Osmosis.org is the leading platform for health education with an audience of millions of current & future healthcare providers and their patients. With the Learn by Osmosis/Osmose It extension you can now bring the power of the massive and best-in-class Osmosis content library to your browsing experience. Whether you’re reading your favorite news site or trying to better understand a Wikipedia or UpToDate article, you’ll get direct links to over 1,600 videos and other topics, ranging from atrial fibrillation to Zika virus!
擴展基本資訊
名稱 | Learn by Osmosis |
ID | aoapgplnpgfjgdjkmnklhojkldpihmji |
官方網址 | https://chromewebstore.google.com/detail/learn-by-osmosis/aoapgplnpgfjgdjkmnklhojkldpihmji |
簡介 | Learn by Osmosis while you browse your favorite websites. |
檔案大小 | 2.09 MB |
安裝次數 | 558 |
目前版本 | 1.2.2 |
更新時間 | 2022-03-30 |
上架時間 | 2020-09-26 |
評分 | 5.00/5 共 4 次評分 |
開發者 | osmosis |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.osmosis.org |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Learn by Osmosis", "version": "1.2.2", "description": "Learn by Osmosis while you browse your favorite websites.", "icons": { "16": "icon\/16.png", "48": "icon\/48.png", "64": "icon\/64.png", "128": "icon\/128.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_title": "Learn by Osmosis", "default_popup": "popup.html", "default_icon": { "16": "icon\/16.png", "48": "icon\/48.png", "64": "icon\/64.png", "128": "icon\/128.png" } }, "background": { "scripts": [ "js\/background.js" ], "persistant": false }, "web_accessible_resources": [ "images\/*.png" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/localhost:*\/*", "*:\/\/*.osmosis.org\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "js\/jquery.min.js", "scripts\/contentscript.js", "js\/anime.min.js" ], "run_at": "document_end", "all_frames": false } ] } |