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