Instapaper highlights exporter

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

什麼是Instapaper highlights exporter?

Instapaper highlights exporter是由sawyerh開發的Chrome擴展程式,該擴展的主要功能是“Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.”。

擴展截圖

screenshot

下載Instapaper highlights exporter擴展crx文件

下載Instapaper highlights exporter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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).                    

擴展基本資訊

名稱 Instapaper highlights exporter Instapaper highlights exporter
ID oiklmlodhebcmaijgmheoafagfhbeohm
官方網址 https://chromewebstore.google.com/detail/instapaper-highlights-exp/oiklmlodhebcmaijgmheoafagfhbeohm
簡介 Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.
檔案大小 113 KB
安裝次數 664
目前版本 1.0.0.0
更新時間 2016-09-02
上架時間 2016-09-02
評分 4.88/5 共 8 次評分
開發者 sawyerh
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}