Hacker News Notification

Top 30 Hacker News Notification

Hacker News Notification란 무엇입니까?

Hacker News Notification은(는) http://www.maxy.fr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Top 30 Hacker News Notification"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hacker News Notification 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Receive notification for each new article published in the top 30 of Hacker News.

V2.2 : 2016-08-09 : The notification problem has been fixed
V2.1 :  2014 : Adding indications Up (U), Down  (D) or Equal (=) for the classification.
V2.0 :  2014 : You can now show the list of all articles directly by clicking on the icon on the top right.                    

확장 프로그램 기본 정보

이름 Hacker News Notification Hacker News Notification
ID bfiigomihpgomgcnkjiclpcldefojggb
공식 URL https://chrome.google.com/webstore/detail/hacker-news-notification/bfiigomihpgomgcnkjiclpcldefojggb
설명 Top 30 Hacker News Notification
파일 크기 525 KB
설치 횟수 11
현재 버전 2.2
최근 업데이트 2016-08-08
출시 날짜 2016-08-08
개발자 http://www.maxy.fr
결제 유형 free
확장 프로그램 웹 사이트 http://www.maxy.fr/blog/article/extension-google-chrome--hacker-news-notification
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News Notification",
    "version": "2.2",
    "manifest_version": 2,
    "description": "Top 30 Hacker News Notification",
    "permissions": [
        "notifications",
        "background",
        "tabs",
        "https:\/\/news.ycombinator.com\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/logo19.png",
            "38": "img\/logo39.png"
        },
        "default_title": "Hacker News Notification",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/popup.js",
                "js\/background.js"
            ],
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/logo16.png",
        "48": "img\/logo48.png",
        "128": "img\/logo.png"
    },
    "web_accessible_resources": [
        "js\/background.js"
    ]
}