Read Later for Hacker News

Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…

Was ist Read Later for Hacker News?

Read Later for Hacker News ist eine Chrome-Erweiterung, die von Julian Santa Ana entwickelt wurde, und ihr Hauptmerkmal ist "Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…".

Erweiterungsscreenshots

screenshot
screenshot

Read Later for Hacker News-Erweiterungs-CRX-Datei herunterladen

Laden Sie Read Later for Hacker News-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.
Simply install this extension and head over to Hacker News to see a new added function right next to the comments' count that says Read Later, click on it and the story will be automatically saved to your Pocket or Instapaper account for you to read when you want. 
It will also add automatically tags to it so that you can find your HackerNews stories more easily.                    

Grundlegende Informationen zur Erweiterung

Name Read Later for Hacker News Read Later for Hacker News
ID kcfdkmoconldndmnipphejclfmajmanc
Offizielle URL https://chromewebstore.google.com/detail/read-later-for-hacker-new/kcfdkmoconldndmnipphejclfmajmanc
Beschreibung Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…
Dateigröße 253 KB
Installationsanzahl 27
Aktuelle Version 1.0
Letztes Update 2014-06-16
Veröffentlichungsdatum 2014-06-16
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Julian Santa Ana
Zahlungsart free
Hilfeseite URL http://me.juliann.com.ar
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Later for Hacker News",
    "description": "",
    "version": "1.0",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "options_page": "options.html",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "dontforgetyourkeys.js",
                "hnreadlater.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/getpocket.com\/v3\/oauth\/request",
        "https:\/\/getpocket.com\/v3\/oauth\/authorize",
        "https:\/\/getpocket.com\/v3\/add",
        "https:\/\/www.instapaper.com\/api\/authenticate",
        "https:\/\/www.instapaper.com\/api\/add"
    ],
    "web_accessible_resources": [
        "welcome.html"
    ]
}