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文件
下载Reddit Comment Arrow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/*" ] } ] } |