Kindle Highlight Extractor

A simple tool for you to export kindle highlights

Apa itu Kindle Highlight Extractor?

Kindle Highlight Extractor adalah ekstensi Chrome yang dikembangkan oleh jackshenforfun, dan fitur utamanya adalah "A simple tool for you to export kindle highlights".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Kindle Highlight Extractor

Unduh file ekstensi Kindle Highlight Extractor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Visit "https://read.amazon.com/" and your highlights will be automatically copied to your clipboard!                    

Informasi Dasar Ekstensi

Nama Kindle Highlight Extractor Kindle Highlight Extractor
ID fcdcecocnpiadlienclinlfojglboado
URL Resmi https://chromewebstore.google.com/detail/kindle-highlight-extracto/fcdcecocnpiadlienclinlfojglboado
Deskripsi A simple tool for you to export kindle highlights
Ukuran File 36.74 KB
Jumlah Instalasi 19
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-12-18
Tanggal Publikasi 2020-12-18
Penilaian 3.00/5 Total 1 Penilaian
Pengembang jackshenforfun
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
    ]
}