Modern for Hacker News

A redesigned web interface for Hacker News.

Τι είναι το Modern for Hacker News;

Το Modern for Hacker News είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://modernhn.com, και η κύρια λειτουργία του είναι "A redesigned web interface for Hacker News.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Modern for Hacker News

Λήψη αρχείων επέκτασης Modern for Hacker News σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Enhance your Hacker News experience with a beautiful, clean, modern design that's fully customizable.

Once installed, this extension will simply apply the new look and features to existing Hacker News pages, without you having to do anything. 

All current features on Hacker News are supported, this extension simply builds upon the existing interface to offer many improvements, including:

✔ Themes – light, classic HN, slate, dark, black
✔ Fonts – sans, serif, change font size
✔ Styles – adjust column width, line height, justify text
✔ History – quickly jump to stories you've previously viewed
✔ Comments – inline reply + many other improvements 
✔ Index – switch between list / table view, customize columns
✔ Profiles – new design with tabs, clickable links etc
✔ Accounts – all HN account features supported
✔ Switch back to the old design (if needed) with one click
✔ More improvements planned for upcoming releases! 

If you have any questions, need help or have any suggestions, please get in touch: [email protected]

----------
This extension is not endorsed by, affiliated with, or sponsored by Y Combinator.


----------
Updates:

v1.14
- Fixed bugs due to HTML changes on HN
- Fixed score not being shown for your own comments

v1.12
- Fixed bugs due to HTML changes on HN

v1.11
- Fixed favorites not being saved
- Fade visited links + added setting to toggle
- Added setting to toggle showing icons on hover
- Added prev / next to comment menu

v1.1
- Bug fixes

v1.0
- First version                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Modern for Hacker News Modern for Hacker News
ID dabkegjlekdcmefifaolmdhnhdcplklo
Επίσημο URL https://chromewebstore.google.com/detail/modern-for-hacker-news/dabkegjlekdcmefifaolmdhnhdcplklo
Περιγραφή A redesigned web interface for Hacker News.
Μέγεθος Αρχείου 6.79 MB
Αριθμός Εγκαταστάσεων 5,556
Τρέχουσα Έκδοση 1.14
Τελευταία Ενημέρωση 2022-11-15
Ημερομηνία Δημοσίευσης 2022-09-08
Αξιολόγηση 4.52/5 Συνολικά 25 Αξιολογήσεις
Προγραμματιστής https://modernhn.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
Διεύθυνση URL της Σελίδας Βοήθειας https://www.modernhn.com/contact
URL της Σελίδας Πολιτικής Απορρήτου https://www.modernredesigns.com/privacy.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.14",
    "manifest_version": 3,
    "name": "Modern for Hacker News",
    "short_name": "Modern for Hacker News",
    "description": "A redesigned web interface for Hacker News.",
    "action": {
        "default_title": "Modern for Hacker News",
        "default_icon": {
            "16": "images\/icon2.png",
            "48": "images\/icon2.png",
            "96": "images\/icon2.png",
            "128": "images\/icon2.png",
            "256": "images\/icon2.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon2.png",
        "48": "images\/icon2.png",
        "96": "images\/icon2.png",
        "128": "images\/icon2.png",
        "256": "images\/icon2.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/news.ycombinator.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "content_start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "popper.min.js",
                "tippy-bundle.umd.min.js",
                "linkify.min.js",
                "linkify-jquery.min.js",
                "luxon.min.js",
                "litepicker.js",
                "clipboard-polyfill.js",
                "ExtPay.js",
                "content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.css",
                "images\/*",
                "fonts\/*"
            ],
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ]
        }
    ]
}