SideHN
The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN
SideHN란 무엇입니까?
SideHN은(는) https://lowtechguys.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN"입니다.
확장 프로그램 스크린샷
SideHN 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension adds a parameter to the links on a Hacker News page, so that when you click on the link, the article page will show a sidebar with the HN comments for that link. The extension can be disabled for individual domains by clicking on its icon.
확장 프로그램 기본 정보
이름 | SideHN |
ID | onhcdbnmlldkpneodnponijjndidkgph |
공식 URL | https://chromewebstore.google.com/detail/sidehn/onhcdbnmlldkpneodnponijjndidkgph |
설명 | The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN |
파일 크기 | 35.11 KB |
설치 횟수 | 44 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-08-30 |
출시 날짜 | 2023-08-29 |
개발자 | https://lowtechguys.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/alin23/sidehn |
도움말 페이지 URL | https://github.com/alin23/sidehn/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SideHN", "version": "1.0", "description": "The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN", "author": "Alin Panaitiu", "homepage_url": "https:\/\/github.com\/alin23\/sidehn", "icons": { "16": "[email protected]", "48": "[email protected]", "128": "[email protected]" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/news.ycombinator.com\/*", "*:\/\/*\/*?*hnid=*" ], "permissions": [ "activeTab", "tabs", "storage", "declarativeNetRequest", "cookies" ], "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*", "*:\/\/*\/*?*hnid=*" ], "js": [ "browser-polyfill.min.js", "script.js" ], "run_at": "document_end" } ], "minimum_chrome_version": "102.0", "action": { "default_icon": { "16": "[email protected]", "48": "[email protected]", "128": "[email protected]" }, "default_title": "SideHN", "default_popup": "popup.html" }, "declarative_net_request": { "rule_resources": [ { "id": "ruleset", "enabled": true, "path": "rules.json" } ] } } |