Kindle Notes Exporter

A chrome plugin that export kindle notes to a notion compatible csv file.

Was ist Kindle Notes Exporter?

Kindle Notes Exporter ist eine Chrome-Erweiterung, die von https://blog.douchi.space entwickelt wurde, und ihr Hauptmerkmal ist "A chrome plugin that export kindle notes to a notion compatible csv file.".

Erweiterungsscreenshots

screenshot

Kindle Notes Exporter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kindle Notes Exporter-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 plugin will convert the current selected kindle notes of user's logged in Kindle note page to a CSV file.
User can import the CSV into a notion table by using "merge with CSV" in Notion, as well as into other software as long as it supports CSV.
Currently only support US kindle account.                    

Grundlegende Informationen zur Erweiterung

Name Kindle Notes Exporter Kindle Notes Exporter
ID ogdkdkhjpdgkaodokpammlabdaohebop
Offizielle URL https://chromewebstore.google.com/detail/kindle-notes-exporter/ogdkdkhjpdgkaodokpammlabdaohebop
Beschreibung A chrome plugin that export kindle notes to a notion compatible csv file.
Dateigröße 43.64 KB
Installationsanzahl 264
Aktuelle Version 1.0.1
Letztes Update 2021-04-15
Veröffentlichungsdatum 2021-04-13
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://blog.douchi.space
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mfcndw/kindle-notion
Hilfeseite URL https://www.patreon.com/bePatron?u=46962965
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kindle Notes Exporter",
    "description": "A chrome plugin that export kindle notes to a notion compatible csv file.",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/images\/logo.png"
        }
    },
    "icons": {
        "128": "\/images\/logo.png"
    }
}