hckr news
Add functionality to news.ycombinator.com and hckrnews.com
hckr news란 무엇입니까?
hckr news은(는) https://hckrnews.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add functionality to news.ycombinator.com and hckrnews.com"입니다.
확장 프로그램 스크린샷
hckr news 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The browser extension adds a few features to both Hacker News and hckr news: * Highlight New Comments * Identify New Comments on hckrnews.com * Alexander Kirk's collapsible threads
확장 프로그램 기본 정보
이름 | hckr news |
ID | mnlaodleonmmfkdhfofamacceeikgecp |
공식 URL | https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp |
설명 | Add functionality to news.ycombinator.com and hckrnews.com |
파일 크기 | 52.15 KB |
설치 횟수 | 1,010 |
현재 버전 | 2.0 |
최근 업데이트 | 2020-01-07 |
출시 날짜 | 2020-01-07 |
평점 | 4.59/5 총 17 개의 평점 |
개발자 | https://hckrnews.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://hckrnews.com/about.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "hckr news", "version": "2.0", "manifest_version": 2, "icons": { "72": "hckrnews-72.png" }, "description": "Add functionality to news.ycombinator.com and hckrnews.com", "background": { "scripts": [ "browser-polyfill.js", "background-script.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/hckrnews.com\/*" ], "js": [ "browser-polyfill.js", "hckr_inject.js" ] }, { "matches": [ "*:\/\/news.ycombinator.com\/item*" ], "js": [ "browser-polyfill.js", "hn_inject.js", "jquery-1.7.1.min.js", "hacker_news_comment_coll.user.js" ] } ] } |