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 |
官方URL | 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 } ] } |