Reddit Comment Arrow
The loved arrow in the reddit comment section to skip to the next top level comment
Reddit Comment Arrow란 무엇입니까?
Reddit Comment Arrow은(는) proohit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The loved arrow in the reddit comment section to skip to the next top level comment"입니다.
확장 프로그램 스크린샷
Reddit Comment Arrow 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Brings the skip-to-next-top-level-comment-button from the mobile apps to the desktop version of reddit. The button will be positioned on the middle left side of the screen by default. Instructions: - Open a reddit post page - Wait until top comments have loaded - Click on the button to jump to the next comment - Hold and drag (default 500 milliseconds) to reposition the button - You can alter several options in the action menu of the extension. Just click on the icon in the extension popover. If the button should mislocate by any reason, its' position can be reset from the action menu via "Reset button position".
확장 프로그램 기본 정보
이름 | Reddit Comment Arrow |
ID | njalndcfgcolndhkmdkjihclbcnmomjl |
공식 URL | https://chromewebstore.google.com/detail/reddit-comment-arrow/njalndcfgcolndhkmdkjihclbcnmomjl |
설명 | The loved arrow in the reddit comment section to skip to the next top level comment |
파일 크기 | 28.07 KB |
설치 횟수 | 178 |
현재 버전 | 1.0.15 |
최근 업데이트 | 2024-02-26 |
출시 날짜 | 2022-09-15 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | proohit |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/proohit/chrome-reddit-comment-arrow |
도움말 페이지 URL | https://github.com/proohit/chrome-reddit-comment-arrow/issues |
지원되는 언어 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "version": "1.0.15", "manifest_version": 3, "default_locale": "en", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/Logo-16.png", "32": "images\/Logo-32.png", "128": "images\/Logo-128.png" } }, "icons": { "16": "images\/Logo-16.png", "32": "images\/Logo-32.png", "128": "images\/Logo-128.png" }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "button.css" ], "matches": [ "https:\/\/www.reddit.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "images\/Reddit-Comment-Arrow.svg" ], "matches": [ "https:\/\/www.reddit.com\/*" ] } ] } |