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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
    }
}