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.”。
扩展截图
下载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).                     扩展基本信息
| 名称 |  | 
| ID | oiklmlodhebcmaijgmheoafagfhbeohm | 
| 官方URL | 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"
    }
} | |