SideHN

The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN

SideHN là gì?

SideHN là một tiện ích mở rộng Chrome được phát triển bởi https://lowtechguys.com, và tính năng chính của nó là "The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng SideHN 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 extension adds a parameter to the links on a Hacker News page, so that when you click on the link, the article page will show a sidebar with the HN comments for that link.

The extension can be disabled for individual domains by clicking on its icon.                    

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

Tên SideHN SideHN
ID onhcdbnmlldkpneodnponijjndidkgph
URL Chính Thức https://chromewebstore.google.com/detail/sidehn/onhcdbnmlldkpneodnponijjndidkgph
Mô tả The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN
Kích Thước Tệp 35.11 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-08-30
Ngày Phát Hành 2023-08-29
Nhà Phát Triển https://lowtechguys.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alin23/sidehn
URL Trang Trợ Giúp https://github.com/alin23/sidehn/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SideHN",
    "version": "1.0",
    "description": "The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN",
    "author": "Alin Panaitiu",
    "homepage_url": "https:\/\/github.com\/alin23\/sidehn",
    "icons": {
        "16": "[email protected]",
        "48": "[email protected]",
        "128": "[email protected]"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/news.ycombinator.com\/*",
        "*:\/\/*\/*?*hnid=*"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "declarativeNetRequest",
        "cookies"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*",
                "*:\/\/*\/*?*hnid=*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "minimum_chrome_version": "102.0",
    "action": {
        "default_icon": {
            "16": "[email protected]",
            "48": "[email protected]",
            "128": "[email protected]"
        },
        "default_title": "SideHN",
        "default_popup": "popup.html"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    }
}