Kindle Highlight Extractor
A simple tool for you to export kindle highlights
Kindle Highlight Extractorとは何ですか?
Kindle Highlight Extractorはjackshenforfunによって開発されたChromeの拡張機能で、その主な機能は「A simple tool for you to export kindle highlights」です。
拡張機能のスクリーンショット
Kindle Highlight Extractor拡張機能のCRXファイルをダウンロード
Kindle Highlight Extractor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Visit "https://read.amazon.com/" and your highlights will be automatically copied to your clipboard!
拡張機能の基本情報
名前 | Kindle Highlight Extractor |
ID | fcdcecocnpiadlienclinlfojglboado |
公式URL | https://chromewebstore.google.com/detail/kindle-highlight-extracto/fcdcecocnpiadlienclinlfojglboado |
説明 | A simple tool for you to export kindle highlights |
ファイルサイズ | 36.74 KB |
インストール数 | 19 |
現在のバージョン | 1.0 |
最終更新日 | 2020-12-18 |
公開日 | 2020-12-18 |
評価 | 3.00/5 合計 1 レビュー |
開発者 | jackshenforfun |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Kindle Highlight Extractor", "description": "A simple tool for you to export kindle highlights", "version": "1.0", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/read.amazon.com\/*" ], "js": [ "jquery-3.1.0.min.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "https:\/\/read.amazon.com\/*" ] } |