Outlearn for Amazon Kindle

With this extension you can save all your amazon kindle highlights to Outlearn Platform.

Outlearn for Amazon Kindle là gì?

Outlearn for Amazon Kindle là một tiện ích mở rộng Chrome được phát triển bởi https://dev-outlearn.egen.io, và tính năng chính của nó là "With this extension you can save all your amazon kindle highlights to Outlearn Platform.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Outlearn for Amazon Kindle 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

                        This chrome extension is used to import kindle highlights from your amazon kindle profile into the outlearn platform.                    

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

Tên Outlearn for Amazon Kindle Outlearn for Amazon Kindle
ID djhacnackahjgkabfkgoipaplnnjiigk
URL Chính Thức https://chrome.google.com/webstore/detail/outlearn-for-amazon-kindl/djhacnackahjgkabfkgoipaplnnjiigk
Mô tả With this extension you can save all your amazon kindle highlights to Outlearn Platform.
Kích Thước Tệp 735 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2018-05-14
Ngày Phát Hành 2018-05-14
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://dev-outlearn.egen.io
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": "Outlearn for Amazon Kindle",
    "short_name": "Outlearn",
    "description": "With this extension you can save all your amazon kindle highlights to Outlearn Platform.",
    "icons": {
        "16": "resources\/images\/OutlearnIconExtension.png",
        "48": "resources\/images\/OutlearnIconExtension.png",
        "128": "resources\/images\/OutlearnIconExtension.png"
    },
    "version": "0.0.8",
    "browser_action": {
        "default_icon": "resources\/images\/OutlearnIconExtension.png",
        "default_popup": "popup.html",
        "default_title": "Outlearn"
    },
    "background": {
        "scripts": [
            "background-task\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/read.amazon.com\/kp\/notebook?\/?"
            ],
            "js": [
                "amazon-content-script\/amazon-kindle.js",
                "jquery\/jquery-3.2.1.min.js"
            ],
            "css": [
                "amazon-content-script\/amazon_kindle.css"
            ],
            "run": "document_end"
        },
        {
            "matches": [
                "https:\/\/outlearn.app\/"
            ],
            "js": [
                "outlearn-content-script\/outlearn-content-script.js",
                "jquery\/jquery-3.2.1.min.js"
            ],
            "css": [
                "outlearn-content-script\/outlearn-content-script.css"
            ],
            "run": "document_start"
        }
    ],
    "permissions": [
        "notifications",
        "storage",
        "webRequest",
        "tabs",
        "https:\/\/kindle.amazon.com\/your_highlights?\/?",
        "https:\/\/outlearn.app\/"
    ],
    "web_accessible_resources": [
        "resources\/images\/OutlearnIconExtension.png",
        "resources\/images\/outlearn-logo.png",
        "amazon-content-script\/amazon-kindle.html"
    ]
}