Instapaper highlights exporter

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

Co je Instapaper highlights exporter?

Instapaper highlights exporter je rozšíření Chrome vyvinuté sawyerh, a jeho hlavní funkcí je „Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Instapaper highlights exporter

Stáhněte si soubory rozšíření Instapaper highlights exporter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Instapaper highlights exporter Instapaper highlights exporter
ID oiklmlodhebcmaijgmheoafagfhbeohm
Oficiální URL https://chromewebstore.google.com/detail/instapaper-highlights-exp/oiklmlodhebcmaijgmheoafagfhbeohm
Popis Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.
Velikost souboru 113 KB
Počet instalací 664
Aktuální Verze 1.0.0.0
Poslední Aktualizace 2016-09-02
Datum Vydání 2016-09-02
Hodnocení 4.88/5 Celkem 8 Hodnocení
Vývojář sawyerh
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}