Kindle Notes Exporter

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

Что такое Kindle Notes Exporter?

Kindle Notes Exporter - это расширение Chrome, разработанное https://blog.douchi.space, и его основная функция - "A chrome plugin that export kindle notes to a notion compatible csv file.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Kindle Notes Exporter

Скачайте файлы расширений Kindle Notes Exporter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Kindle Notes Exporter Kindle Notes Exporter
ID ogdkdkhjpdgkaodokpammlabdaohebop
Официальный URL https://chromewebstore.google.com/detail/kindle-notes-exporter/ogdkdkhjpdgkaodokpammlabdaohebop
Описание A chrome plugin that export kindle notes to a notion compatible csv file.
Размер файла 43.64 KB
Количество установок 264
Текущая Версия 1.0.1
Последнее Обновление 2021-04-15
Дата публикации 2021-04-13
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://blog.douchi.space
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mfcndw/kindle-notion
URL страницы помощи https://www.patreon.com/bePatron?u=46962965
Поддерживаемые языки 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"
    }
}