Kindle Highlight Extractor
A simple tool for you to export kindle highlights
Wat is Kindle Highlight Extractor?
Kindle Highlight Extractor is een Chrome-extensie ontwikkeld door jackshenforfun, en de belangrijkste functie is "A simple tool for you to export kindle highlights".
Extensie Screenshots
Download het CRX-bestand van de extensie Kindle Highlight Extractor
Download Kindle Highlight Extractor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Visit "https://read.amazon.com/" and your highlights will be automatically copied to your clipboard! Basisinformatie over de Extensie
| Naam | |
| ID | fcdcecocnpiadlienclinlfojglboado |
| Officiële URL | https://chromewebstore.google.com/detail/kindle-highlight-extracto/fcdcecocnpiadlienclinlfojglboado |
| Beschrijving | A simple tool for you to export kindle highlights |
| Bestandsgrootte | 36.74 KB |
| Aantal Installaties | 19 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2020-12-18 |
| Publicatiedatum | 2020-12-18 |
| Beoordeling | 3.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | jackshenforfun |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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\/*"
]
} | |