SideHN

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

SideHN क्या है?

SideHN 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 फ़ाइल डाउनलोड करें

crx प्रारूप में SideHN एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            }
        ]
    }
}