Instapaper highlights exporter

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

Co to jest Instapaper highlights exporter?

Instapaper highlights exporter to rozszerzenie Chrome opracowane przez sawyerh, a jego główną funkcją jest „Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Instapaper highlights exporter

Pobierz pliki rozszerzeń Instapaper highlights exporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Instapaper highlights exporter Instapaper highlights exporter
ID oiklmlodhebcmaijgmheoafagfhbeohm
Oficjalny URL https://chromewebstore.google.com/detail/instapaper-highlights-exp/oiklmlodhebcmaijgmheoafagfhbeohm
Opis Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.
Rozmiar pliku 113 KB
Liczba instalacji 664
Aktualna Wersja 1.0.0.0
Ostatnia Aktualizacja 2016-09-02
Data Publikacji 2016-09-02
Ocena 4.88/5 Łącznie 8 Oceny
Deweloper sawyerh
E-mail browser-extensions@sawyerh.com
Typ Płatności free
Obsługiwane Języki 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": "extension@instapaper-notes-exporter.com",
            "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"
    }
}