Kindle Highlight Extractor

A simple tool for you to export kindle highlights

Kindle Highlight Extractor là gì?

Kindle Highlight Extractor là một tiện ích mở rộng Chrome được phát triển bởi jackshenforfun, và tính năng chính của nó là "A simple tool for you to export kindle highlights".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kindle Highlight Extractor

Tải xuống các tệp mở rộng Kindle Highlight Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kindle Highlight Extractor Kindle Highlight Extractor
ID fcdcecocnpiadlienclinlfojglboado
URL Chính Thức https://chromewebstore.google.com/detail/kindle-highlight-extracto/fcdcecocnpiadlienclinlfojglboado
Mô tả A simple tool for you to export kindle highlights
Kích Thước Tệp 36.74 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-12-18
Ngày Phát Hành 2020-12-18
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jackshenforfun
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}