hckr news

Add functionality to news.ycombinator.com and hckrnews.com

hckr newsคืออะไร?

hckr news เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://hckrnews.com และคุณลักษณะหลักของมันคือ "Add functionality to news.ycombinator.com and hckrnews.com"

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

screenshot
screenshot

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

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

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

                        The browser extension adds a few features to both Hacker News and hckr news:

* Highlight New Comments
* Identify New Comments on hckrnews.com
* Alexander Kirk's collapsible threads                    

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

ชื่อ hckr news hckr news
ID mnlaodleonmmfkdhfofamacceeikgecp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp
คำอธิบาย Add functionality to news.ycombinator.com and hckrnews.com
ขนาดไฟล์ 52.15 KB
จำนวนการติดตั้ง 1,010
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2020-01-07
วันที่เผยแพร่ 2020-01-07
คะแนน 4.59/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา https://hckrnews.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://hckrnews.com/about.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hckr news",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "72": "hckrnews-72.png"
    },
    "description": "Add functionality to news.ycombinator.com and hckrnews.com",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background-script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/hckrnews.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "hckr_inject.js"
            ]
        },
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/item*"
            ],
            "js": [
                "browser-polyfill.js",
                "hn_inject.js",
                "jquery-1.7.1.min.js",
                "hacker_news_comment_coll.user.js"
            ]
        }
    ]
}