Outlearn for Amazon Kindle

With this extension you can save all your amazon kindle highlights to Outlearn Platform.

Wat is Outlearn for Amazon Kindle?

Outlearn for Amazon Kindle is een Chrome-extensie ontwikkeld door https://dev-outlearn.egen.io, en de belangrijkste functie is "With this extension you can save all your amazon kindle highlights to Outlearn Platform.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Outlearn for Amazon Kindle

Download Outlearn for Amazon Kindle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This chrome extension is used to import kindle highlights from your amazon kindle profile into the outlearn platform.                    

Basisinformatie over de Extensie

Naam Outlearn for Amazon Kindle Outlearn for Amazon Kindle
ID djhacnackahjgkabfkgoipaplnnjiigk
Officiële URL https://chrome.google.com/webstore/detail/outlearn-for-amazon-kindl/djhacnackahjgkabfkgoipaplnnjiigk
Beschrijving With this extension you can save all your amazon kindle highlights to Outlearn Platform.
Bestandsgrootte 735 KB
Aantal Installaties 12
Huidige Versie 0.0.8
Laatst Bijgewerkt 2018-05-14
Publicatiedatum 2018-05-14
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar https://dev-outlearn.egen.io
Betalingswijze free
Ondersteunde Talen 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"
    ]
}