HN Enhance

An extension that enhances news.ycombinator website.

HN Enhance là gì?

HN Enhance là một tiện ích mở rộng Chrome được phát triển bởi Alvaro Bernal G, và tính năng chính của nó là "An extension that enhances news.ycombinator website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng HN Enhance

Tải xuống các tệp mở rộng HN Enhance dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Features:
- Displays a military rank badge alongside the username. Rank is obtained
  according to the following proportion: Karma 1:1 Seniority.
- A minimalist black theme that is easy to to the eyes.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HN Enhance HN Enhance
ID dmnbgmcilgmcmlhgjkociikeihbkbcdp
URL Chính Thức https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp
Mô tả An extension that enhances news.ycombinator website.
Kích Thước Tệp 74.79 KB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2019-04-04
Ngày Phát Hành 2019-04-04
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Alvaro Bernal G
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://alvarobg.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HN Enhance",
    "manifest_version": 2,
    "author": "Alvaro Bernal",
    "version": "0.1.0",
    "description": "An extension that enhances news.ycombinator website.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon-128.png",
        "default_title": "HN Enhance"
    },
    "web_accessible_resources": [
        "*.woff",
        "*.svg"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "38": "icons\/icon-38.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "style.css",
                "ranks.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ]
}