HN Special - An addition to Hacker News

This extension refreshes the visual style of Hacker News and adds a few features, like infinite scrolling. Everything is toggleable.

HN Special - An addition to Hacker Newsคืออะไร?

HN Special - An addition to Hacker News เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hn-special-publishing และคุณลักษณะหลักของมันคือ "This extension refreshes the visual style of Hacker News and adds a few features, like infinite scrolling. Everything is toggleable."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HN Special - An addition to Hacker News

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

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

                        HN Special adds a completely new visual style to Hacker News and a few new features, such as:
 - Infinite scrolling
 - Open links in new tabs
 - More accurate domain names
 - Comment folding
 - Mark as read
 - Sticky header

Even more features are going to come in the future!

You can choose which features you want to enable right from the settings menu. If you want, you can also disable the visual style and keep the rest of the features enabled.

This extension is completely open source. If you wish to add a new feature or make some changes, feel free to contribute to it on GitHub! https://github.com/gabrielecirulli/hn-special                    

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

ชื่อ HN Special - An addition to Hacker News HN Special - An addition to Hacker News
ID cchaceegbflphbdpfocjalgjhjoahiia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hn-special-an-addition-to/cchaceegbflphbdpfocjalgjhjoahiia
คำอธิบาย This extension refreshes the visual style of Hacker News and adds a few features, like infinite scrolling. Everything is toggleable.
ขนาดไฟล์ 834 KB
จำนวนการติดตั้ง 1,255
เวอร์ชันปัจจุบัน 1.4.11
อัปเดตครั้งล่าสุด 2022-10-05
วันที่เผยแพร่ 2017-12-18
คะแนน 4.73/5 รวมทั้งหมด 55 คะแนน
ผู้พัฒนา hn-special-publishing
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://gabrielecirulli.github.io/hn-special/
URL หน้าช่วยเหลือ https://github.com/gabrielecirulli/hn-special
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HN Special - An addition to Hacker News",
    "description": "This extension refreshes the visual style of Hacker News and adds a few features, like infinite scrolling. Everything is toggleable.",
    "version": "1.4.11",
    "homepage_url": "http:\/\/gabrielecirulli.github.io\/hn-special\/",
    "permissions": [
        "*:\/\/news.ycombinator.com\/*"
    ],
    "optional_permissions": [
        "history"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "background": {
        "scripts": [
            "lib\/extras\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "lib\/tools\/hide_flash.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "lib\/tools\/utility.js",
                "lib\/settings.js",
                "lib\/modules\/visual_theme.js",
                "lib\/modules\/dark_theme.js",
                "lib\/modules\/high_contrast.js",
                "lib\/modules\/gray_visited_links.js",
                "lib\/modules\/open_links_in_new_tabs.js",
                "lib\/modules\/highlight_links_when_returning.js",
                "lib\/modules\/infinite_scrolling.js",
                "lib\/modules\/accurate_domain_names.js",
                "lib\/modules\/mark_as_read.js",
                "lib\/modules\/sticky_header.js",
                "lib\/modules\/user_tooltips.js",
                "lib\/modules\/hide_downvote.js"
            ],
            "css": [
                "lib\/extras\/hn_theme_base.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "lib\/defaults.json",
        "lib\/extras\/permissions.html",
        "lib\/extras\/permissions.js",
        "lib\/extras\/hn_theme_base.css",
        "lib\/extras\/hn_theme_light.css",
        "lib\/extras\/hn_theme_light_contrast.css",
        "lib\/extras\/hn_theme_dark.css",
        "resources\/gear.svg",
        "resources\/arrow-up-white.svg",
        "resources\/arrow-down-white.svg",
        "resources\/arrow-up-black.svg",
        "resources\/arrow-down-black.svg",
        "resources\/logo.svg"
    ],
    "icons": {
        "16": "promo\/icons\/icon16.png",
        "32": "promo\/icons\/icon32.png",
        "48": "promo\/icons\/icon48.png",
        "64": "promo\/icons\/icon64.png",
        "128": "promo\/icons\/icon128.png"
    }
}