Hacker News

Displays recent stories from Hacker News

Hacker News란 무엇입니까?

Hacker News은(는) adam.albrecht에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays recent stories from Hacker News"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension displays the latest articles from Y Combinator's Hacker News (news.ycombinator.com).  It also allows you to submit your current tab to Hacker News and perform a search of past Hacker News stories.

Have any bugs or suggestions?  Log them here:  http://github.com/adamalbrecht/hacker-news-for-chrome/issues                    

확장 프로그램 기본 정보

이름 Hacker News Hacker News
ID geancnifhbkbjijfkcjjdnfemppmcjmk
공식 URL https://chromewebstore.google.com/detail/hacker-news/geancnifhbkbjijfkcjjdnfemppmcjmk
설명 Displays recent stories from Hacker News
파일 크기 25.31 KB
설치 횟수 1,344
현재 버전 3.21.0
최근 업데이트 2020-03-11
출시 날짜 2020-03-10
평점 4.56/5 총 36 개의 평점
개발자 adam.albrecht
결제 유형 free
확장 프로그램 웹 사이트 https://www.adamalbrecht.com
도움말 페이지 URL https://github.com/adamalbrecht/hacker-news-for-chrome
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News",
    "version": "3.21.0",
    "description": "Displays recent stories from Hacker News",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Hacker News",
        "default_icon": "icon18.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "https:\/\/news.ycombinator.com\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com; object-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com"
}