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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple and intuitive way of saving Hacker News stories to read later. Supports Pocket and Instapaper as Reading Later services.…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Read Later for Hacker News एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}