Hacker News

Hacker News for your new tab. Night mode or day mode (just like your IDE). Card view with images or the classic HN list view.

Co to jest Hacker News?

Hacker News to rozszerzenie Chrome opracowane przez https://gitconnected.com, a jego główną funkcją jest „Hacker News for your new tab. Night mode or day mode (just like your IDE). Card view with images or the classic HN list view.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Hacker News

Pobierz pliki rozszerzeń Hacker News w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        - Infinite scroll
- Hacker news in default tab
- Images for stories
- Night mode
- Grid or list view

Get all the latest tech, startup, and coding news instantly. Read HN in night mode... like the web is meant to be viewed. The grid view offers images and icons to more easily scan the news items. 

This is an independent Hacker News clone with no connection to Y Combinator (YC). Hacker News is an essential source for developers, founders, designers, software engineers, and anyone obsessed with startups. Thanks to all our friends from Startup School!

The Chrome Extension is open source, and you are able to build your own as well! Check out the gitconnected GitHub account under the hacker-news-reader repo.

Take the hassle out of reading staying up to date with the news and content that is important to you.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hacker News Hacker News
ID hknoigmfpgfdkccnkbfbjfnocoegoefe
Oficjalny URL https://chromewebstore.google.com/detail/hacker-news/hknoigmfpgfdkccnkbfbjfnocoegoefe
Opis Hacker News for your new tab. Night mode or day mode (just like your IDE). Card view with images or the classic HN list view.
Rozmiar pliku 477 KB
Liczba instalacji 259
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2022-04-20
Data Publikacji 2018-10-26
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper https://gitconnected.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News",
    "description": "Hacker News for your new tab. Night mode or day mode (just like your IDE). Card view with images or the classic HN list view.",
    "version": "1.0.4",
    "author": "gitconnected",
    "browser_action": {
        "default_icon": "yc-night.png",
        "default_title": "New Tab"
    },
    "icons": {
        "128": "yc-night.png",
        "48": "yc-night.png",
        "16": "yc-night-small.png"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}