Hacker News discussion

Displays an icon linking to comments on Hacker News for the current page.

Hacker News discussion là gì?

Hacker News discussion là một tiện ích mở rộng Chrome được phát triển bởi Adam Sapek, và tính năng chính của nó là "Displays an icon linking to comments on Hacker News for the current page.".

Ả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 Hacker News discussion

Tải xuống các tệp mở rộng Hacker News discussion 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 icon is displayed only for pages that have been discussed on Hacker News.

Keyboard shortcuts:

Ctrl+Y: open comments in a new tab
Alt+Y: open comments in the current tab

The extension does not collect any data. Note however that the URLs of pages you visit will be sent over https to HNSearch (https://hn.algolia.com) which is hosted by a YC company Algolia.

The extension does not have permission to access data on websites you visit.                    

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

Tên Hacker News discussion Hacker News discussion
ID iggcipafbcjfofibfhhelnipahhepmkd
URL Chính Thức https://chromewebstore.google.com/detail/hacker-news-discussion/iggcipafbcjfofibfhhelnipahhepmkd
Mô tả Displays an icon linking to comments on Hacker News for the current page.
Kích Thước Tệp 8.75 KB
Số Lần Cài Đặt 125
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2015-09-20
Ngày Phát Hành 2015-09-19
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Adam Sapek
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News discussion",
    "version": "1.9",
    "description": "Displays an icon linking to comments on Hacker News for the current page.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "y.png",
        "default_title": "See discussion on HN"
    },
    "commands": {
        "newtabHN": {
            "suggested_key": {
                "default": "Ctrl+Y"
            },
            "description": "Open HN comments in a new tab"
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+Y"
            }
        }
    },
    "permissions": [
        "tabs",
        "https:\/\/hn.algolia.com\/*"
    ],
    "icons": {
        "128": "y128.png"
    },
    "manifest_version": 2
}