SideHN

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

SideHNคืออะไร?

SideHN เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lowtechguys.com และคุณลักษณะหลักของมันคือ "The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        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.                    

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

ชื่อ SideHN SideHN
ID onhcdbnmlldkpneodnponijjndidkgph
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sidehn/onhcdbnmlldkpneodnponijjndidkgph
คำอธิบาย The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN
ขนาดไฟล์ 35.11 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-08-30
วันที่เผยแพร่ 2023-08-29
ผู้พัฒนา https://lowtechguys.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/alin23/sidehn
URL หน้าช่วยเหลือ https://github.com/alin23/sidehn/issues
ภาษาที่รองรับ 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"
            }
        ]
    }
}