Learn by Osmosis
Learn by Osmosis while you browse your favorite websites.
Was ist Learn by Osmosis?
Learn by Osmosis ist eine Chrome-Erweiterung, die von osmosis entwickelt wurde, und ihr Hauptmerkmal ist "Learn by Osmosis while you browse your favorite websites.".
Erweiterungsscreenshots
Learn by Osmosis-Erweiterungs-CRX-Datei herunterladen
Laden Sie Learn by Osmosis-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aoapgplnpgfjgdjkmnklhojkldpihmji |
| Offizielle URL | https://chromewebstore.google.com/detail/learn-by-osmosis/aoapgplnpgfjgdjkmnklhojkldpihmji |
| Beschreibung | Learn by Osmosis while you browse your favorite websites. |
| Dateigröße | 2.09 MB |
| Installationsanzahl | 558 |
| Aktuelle Version | 1.2.2 |
| Letztes Update | 2022-03-30 |
| Veröffentlichungsdatum | 2020-09-26 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | osmosis |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.osmosis.org |
| Unterstützte Sprachen | 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
}
]
} | |