Instapaper highlights exporter

Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.

Instapaper highlights exporter là gì?

Instapaper highlights exporter là một tiện ích mở rộng Chrome được phát triển bởi sawyerh, và tính năng chính của nó là "Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.".

Ả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 Instapaper highlights exporter

Tải xuống các tệp mở rộng Instapaper highlights exporter 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

                        A simple Chrome extension that adds a button to your browser toolbar which, when clicked, will export your Instapaper highlights as an HTML page (with JSON output included).                    

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

Tên Instapaper highlights exporter Instapaper highlights exporter
ID oiklmlodhebcmaijgmheoafagfhbeohm
URL Chính Thức https://chromewebstore.google.com/detail/instapaper-highlights-exp/oiklmlodhebcmaijgmheoafagfhbeohm
Mô tả Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.
Kích Thước Tệp 113 KB
Số Lần Cài Đặt 664
Phiên Bản Hiện Tại 1.0.0.0
Cập Nhật Lần Cuối 2016-09-02
Ngày Phát Hành 2016-09-02
Đánh Giá 4.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển sawyerh
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.0.0",
    "name": "Instapaper highlights exporter",
    "description": "Visit instapaper.com\/notes and click the extension icon to export your highlights from Instapaper.",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "48.0"
        }
    },
    "background": {
        "scripts": [
            "assets\/js\/background.min.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instapaper.com\/*"
            ],
            "js": [
                "\/assets\/js\/content-script.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "\/assets\/images\/action-icon-38.png",
        "default_title": "Export Instapaper notes"
    },
    "permissions": [
        "https:\/\/www.instapaper.com\/",
        "downloads",
        "tabs"
    ],
    "icons": {
        "16": "assets\/images\/icon-16.png",
        "32": "assets\/images\/icon-32.png",
        "48": "assets\/images\/icon-48.png",
        "64": "assets\/images\/icon-64.png",
        "128": "assets\/images\/icon-128.png"
    }
}