hn-friends

Highlight and tag your friends on Hacker News.

hn-friends란 무엇입니까?

hn-friends은(는) jessejesse123에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight and tag your friends on Hacker News."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

hn-friends 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}