Kindle Highlight Extractor
A simple tool for you to export kindle highlights
What is Kindle Highlight Extractor?
Kindle Highlight Extractor is a Chrome extension developed by jackshenforfun, and its main feature is "A simple tool for you to export kindle highlights".
Extension Screenshots
Download Kindle Highlight Extractor Extension CRX File
Download Kindle Highlight Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Visit "https://read.amazon.com/" and your highlights will be automatically copied to your clipboard!
Extension Basic Information
Name | Kindle Highlight Extractor |
ID | fcdcecocnpiadlienclinlfojglboado |
Official URL | https://chromewebstore.google.com/detail/kindle-highlight-extracto/fcdcecocnpiadlienclinlfojglboado |
Description | A simple tool for you to export kindle highlights |
File Size | 36.74 KB |
Installation Count | 19 |
Current Version | 1.0 |
Last Updated | 2020-12-18 |
Publish Date | 2020-12-18 |
Rating | 3.00/5 Total 1 Ratings |
Developer | jackshenforfun |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |