hckr news

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

hckr news là gì?

hckr news là một tiện ích mở rộng Chrome được phát triển bởi https://hckrnews.com, và tính năng chính của nó là "Add functionality to news.ycombinator.com and hckrnews.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng hckr news

Tải xuống các tệp mở rộng hckr news dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên hckr news hckr news
ID mnlaodleonmmfkdhfofamacceeikgecp
URL Chính Thức https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp
Mô tả Add functionality to news.ycombinator.com and hckrnews.com
Kích Thước Tệp 52.15 KB
Số Lần Cài Đặt 1,010
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2020-01-07
Ngày Phát Hành 2020-01-07
Đánh Giá 4.59/5 Tổng số 17 Đánh Giá
Nhà Phát Triển https://hckrnews.com
Loại Thanh Toán free
Trang Web Mở Rộng http://hckrnews.com/about.html
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}