Kindle Notes Exporter

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

Co to jest Kindle Notes Exporter?

Kindle Notes Exporter to rozszerzenie Chrome opracowane przez https://blog.douchi.space, a jego główną funkcją jest „A chrome plugin that export kindle notes to a notion compatible csv file.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Kindle Notes Exporter

Pobierz pliki rozszerzeń Kindle Notes Exporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Kindle Notes Exporter Kindle Notes Exporter
ID ogdkdkhjpdgkaodokpammlabdaohebop
Oficjalny URL https://chromewebstore.google.com/detail/kindle-notes-exporter/ogdkdkhjpdgkaodokpammlabdaohebop
Opis A chrome plugin that export kindle notes to a notion compatible csv file.
Rozmiar pliku 43.64 KB
Liczba instalacji 264
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2021-04-15
Data Publikacji 2021-04-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://blog.douchi.space
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mfcndw/kindle-notion
Adres URL Strony Pomocy https://www.patreon.com/bePatron?u=46962965
Obsługiwane Języki 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"
    }
}