HipsterNews

DesignerNews in your HackerNews so you can browse while you browse.

HipsterNews란 무엇입니까?

HipsterNews은(는) Matt Milosavljevic (mmilo)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "DesignerNews in your HackerNews so you can browse while you browse."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        HipsterNews is an extension that makes HackerNews (news.ycombinator.com) look more like DesignerNews (news.layervault.com). It’s created and maintained by Matt Milosavljevic, you can find him as @mmilo on Twitter.                    

확장 프로그램 기본 정보

이름 HipsterNews HipsterNews
ID midnccdcbhikpniledkdhojbhdnkkkdb
공식 URL https://chromewebstore.google.com/detail/hipsternews/midnccdcbhikpniledkdhojbhdnkkkdb
설명 DesignerNews in your HackerNews so you can browse while you browse.
파일 크기 68.68 KB
설치 횟수 169
현재 버전 0.5
최근 업데이트 2013-07-04
출시 날짜 2013-07-03
평점 4.62/5 총 21 개의 평점
개발자 Matt Milosavljevic (mmilo)
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HipsterNews",
    "version": "0.5",
    "manifest_version": 2,
    "description": "DesignerNews in your HackerNews so you can browse while you browse.",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}