Hackers New

Show items from HN's /newest page on the Hacker News front page.

Hackers Newคืออะไร?

Hackers New เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rodney Folz และคุณลักษณะหลักของมันคือ "Show items from HN's /newest page on the Hacker News front page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hackers New

ดาวน์โหลดไฟล์ส่วนขยาย Hackers New ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple browser extension for Firefox and Chrome that adds items from HN's /newest page to the front page. These stories are chosen at random from /newest and get re-chosen every fifteen minutes. You can upvote them from the front page just like you would from /newest.

(The highlight in the screenshot is edited to draw attention to the new story; this extension doesn't change how HN is styled.)

Donations: 1KZ23Sm35C7Xjk9kV2VxCM7xscnsU9Huha

Explanation of permissions:

Host permissions: hacker-news.firebaseio.com and news.ycombinator.com. The first host is required to access the HN api and fetch new stories. The second host is required to display new stories on the front page.

alarms: Required to trigger the periodic fetching of new stories.

storage: Required to persist data for new stories after we fetch them, so that displaying them on the front page is snappy.

I take privacy seriously and your data is never shared with anyone. The extension is open-source at https://github.com/folz/hackers-new so that you can verify this claim.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hackers New Hackers New
ID khpjpigbdlgncbapkpbcfnhllafjgkgf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hackers-new/khpjpigbdlgncbapkpbcfnhllafjgkgf
คำอธิบาย Show items from HN's /newest page on the Hacker News front page.
ขนาดไฟล์ 24.89 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2016-11-14
วันที่เผยแพร่ 2016-11-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Rodney Folz
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/folz/hackers-new
URL หน้าช่วยเหลือ https://github.com/folz/hackers-new/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hackers New",
    "version": "1.0.5",
    "description": "Show items from HN's \/newest page on the Hacker News front page.",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "*:\/\/hacker-news.firebaseio.com\/*",
        "*:\/\/news.ycombinator.com\/*",
        "alarms",
        "storage"
    ],
    "background": {
        "scripts": [
            "refresh-new.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "display-new.js"
            ],
            "matches": [
                "*:\/\/news.ycombinator.com\/",
                "*:\/\/news.ycombinator.com\/news*"
            ],
            "run_at": "document_end"
        }
    ]
}