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 - это расширение Chrome, разработанное Julian Santa Ana, и его основная функция - "Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Read Later for Hacker News

Скачайте файлы расширений 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"
    ]
}