Kindle Notes Exporter
A chrome plugin that export kindle notes to a notion compatible csv file.
什麼是Kindle Notes Exporter?
Kindle Notes Exporter是由https://blog.douchi.space開發的Chrome擴展程式,該擴展的主要功能是“A chrome plugin that export kindle notes to a notion compatible csv file.”。
擴展截圖
下載Kindle Notes Exporter擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | ogdkdkhjpdgkaodokpammlabdaohebop |
| 官方網址 | 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"
}
} | |