Reddit Comment Arrow
The loved arrow in the reddit comment section to skip to the next top level comment
Reddit Comment Arrow là gì?
Reddit Comment Arrow là một tiện ích mở rộng Chrome được phát triển bởi proohit, và tính năng chính của nó là "The loved arrow in the reddit comment section to skip to the next top level comment".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reddit Comment Arrow
Tải xuống các tệp mở rộng Reddit Comment Arrow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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".
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reddit Comment Arrow |
ID | njalndcfgcolndhkmdkjihclbcnmomjl |
URL Chính Thức | https://chromewebstore.google.com/detail/reddit-comment-arrow/njalndcfgcolndhkmdkjihclbcnmomjl |
Mô tả | The loved arrow in the reddit comment section to skip to the next top level comment |
Kích Thước Tệp | 28.07 KB |
Số Lần Cài Đặt | 178 |
Phiên Bản Hiện Tại | 1.0.15 |
Cập Nhật Lần Cuối | 2024-02-26 |
Ngày Phát Hành | 2022-09-15 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | proohit |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/proohit/chrome-reddit-comment-arrow |
URL Trang Trợ Giúp | https://github.com/proohit/chrome-reddit-comment-arrow/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |