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