hn-friends

Highlight and tag your friends on Hacker News.

hn-friendsคืออะไร?

hn-friends เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jessejesse123 และคุณลักษณะหลักของมันคือ "Highlight and tag your friends on Hacker News."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย hn-friends

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

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

                        Highlight and tag your friends on Hacker News.                    

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

ชื่อ hn-friends hn-friends
ID ffgfcbfgdemibfcpcfkpicfgkiojbdkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hn-friends/ffgfcbfgdemibfcpcfkpicfgkiojbdkn
คำอธิบาย Highlight and tag your friends on Hacker News.
ขนาดไฟล์ 15.83 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2018-08-10
วันที่เผยแพร่ 2018-08-10
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา jessejesse123
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    }
}