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

什么是Read Later for Hacker News?

Read Later for Hacker News是由Julian Santa Ana开发的Chrome扩展程序,该扩展的主要功能是“Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…”。

扩展截图

screenshot
screenshot

下载Read Later for Hacker News扩展crx文件

下载Read Later for Hacker News扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Read Later for Hacker News Read Later for Hacker News
ID kcfdkmoconldndmnipphejclfmajmanc
官方URL https://chromewebstore.google.com/detail/read-later-for-hacker-new/kcfdkmoconldndmnipphejclfmajmanc
简介 Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…
文件大小 253 KB
安装次数 27
当前版本 1.0
更新时间 2014-06-16
上架时间 2014-06-16
评分 5.00/5 共1次评分
开发者 Julian Santa Ana
付费类型 free
帮助页面URL http://me.juliann.com.ar
支持的语言 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"
    ]
}