Outlearn for Amazon Kindle
With this extension you can save all your amazon kindle highlights to Outlearn Platform.
Was ist Outlearn for Amazon Kindle?
Outlearn for Amazon Kindle ist eine Chrome-Erweiterung, die von https://dev-outlearn.egen.io entwickelt wurde, und ihr Hauptmerkmal ist "With this extension you can save all your amazon kindle highlights to Outlearn Platform.".
Erweiterungsscreenshots
Outlearn for Amazon Kindle-Erweiterungs-CRX-Datei herunterladen
Laden Sie Outlearn for Amazon Kindle-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
This chrome extension is used to import kindle highlights from your amazon kindle profile into the outlearn platform. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | djhacnackahjgkabfkgoipaplnnjiigk |
| Offizielle URL | https://chrome.google.com/webstore/detail/outlearn-for-amazon-kindl/djhacnackahjgkabfkgoipaplnnjiigk |
| Beschreibung | With this extension you can save all your amazon kindle highlights to Outlearn Platform. |
| Dateigröße | 735 KB |
| Installationsanzahl | 12 |
| Aktuelle Version | 0.0.8 |
| Letztes Update | 2018-05-14 |
| Veröffentlichungsdatum | 2018-05-14 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | https://dev-outlearn.egen.io |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Outlearn for Amazon Kindle",
"short_name": "Outlearn",
"description": "With this extension you can save all your amazon kindle highlights to Outlearn Platform.",
"icons": {
"16": "resources\/images\/OutlearnIconExtension.png",
"48": "resources\/images\/OutlearnIconExtension.png",
"128": "resources\/images\/OutlearnIconExtension.png"
},
"version": "0.0.8",
"browser_action": {
"default_icon": "resources\/images\/OutlearnIconExtension.png",
"default_popup": "popup.html",
"default_title": "Outlearn"
},
"background": {
"scripts": [
"background-task\/background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/read.amazon.com\/kp\/notebook?\/?"
],
"js": [
"amazon-content-script\/amazon-kindle.js",
"jquery\/jquery-3.2.1.min.js"
],
"css": [
"amazon-content-script\/amazon_kindle.css"
],
"run": "document_end"
},
{
"matches": [
"https:\/\/outlearn.app\/"
],
"js": [
"outlearn-content-script\/outlearn-content-script.js",
"jquery\/jquery-3.2.1.min.js"
],
"css": [
"outlearn-content-script\/outlearn-content-script.css"
],
"run": "document_start"
}
],
"permissions": [
"notifications",
"storage",
"webRequest",
"tabs",
"https:\/\/kindle.amazon.com\/your_highlights?\/?",
"https:\/\/outlearn.app\/"
],
"web_accessible_resources": [
"resources\/images\/OutlearnIconExtension.png",
"resources\/images\/outlearn-logo.png",
"amazon-content-script\/amazon-kindle.html"
]
} | |