hn-friends

Highlight and tag your friends on Hacker News.

hn-friends là gì?

hn-friends là một tiện ích mở rộng Chrome được phát triển bởi jessejesse123, và tính năng chính của nó là "Highlight and tag your friends on Hacker News.".

Ả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-friends

Tải xuống các tệp mở rộng hn-friends 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

                        Highlight and tag your friends on Hacker News.                    

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

Tên hn-friends hn-friends
ID ffgfcbfgdemibfcpcfkpicfgkiojbdkn
URL Chính Thức https://chromewebstore.google.com/detail/hn-friends/ffgfcbfgdemibfcpcfkpicfgkiojbdkn
Mô tả Highlight and tag your friends on Hacker News.
Kích Thước Tệp 15.83 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-08-10
Ngày Phát Hành 2018-08-10
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển jessejesse123
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "hn-friends",
    "version": "1.2",
    "description": "Highlight and tag your friends on Hacker News.",
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "img\/tag.svg"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "src\/utils.js",
                "src\/hn-friends.js"
            ]
        },
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/user?id=*"
            ],
            "js": [
                "src\/user.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "48": "icons\/48.png",
            "96": "icons\/96.png"
        },
        "default_title": "HN Friends",
        "default_popup": "popup\/popup.html"
    }
}