Reddit Nav
Effortlessly scroll through comment threads on Reddit.
什么是Reddit Nav?
Reddit Nav是由reddit-nav-developers开发的Chrome扩展程序,该扩展的主要功能是“Effortlessly scroll through comment threads on Reddit.”。
扩展截图
下载Reddit Nav扩展crx文件
下载Reddit Nav扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
RedditNav is a beautiful way to move between threads, accelerating the way you browse reddit comments. Features: - Navigate between root threads using the intuitive floating navigation button. - Alternatively use the `W` and `Q` keyboard shortcuts. - Customize the color and placement of the floating action button. - Choose from a variety of different scroll speeds. - Material Design. Changelog: https://github.com/justinthec/redditnav/releases RedditNav is an open source project. Contribute at http://github.com/justinthec/redditnav Created by Justin Chan and Srdjan Mitrovic
扩展基本信息
名称 | Reddit Nav |
ID | dpkijnoebmekoiafbkledpjhkpgllkfe |
官方URL | https://chromewebstore.google.com/detail/reddit-nav/dpkijnoebmekoiafbkledpjhkpgllkfe |
简介 | Effortlessly scroll through comment threads on Reddit. |
文件大小 | 81.92 KB |
安装次数 | 199 |
当前版本 | 1.1.2 |
更新时间 | 2017-09-19 |
上架时间 | 2017-09-19 |
评分 | 4.13/5 共15次评分 |
开发者 | reddit-nav-developers |
付费类型 | free |
帮助页面URL | http://github.com/justinthec/redditnav |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Nav", "description": "Effortlessly scroll through comment threads on Reddit.", "version": "1.1.2", "browser_action": { "default_icon": "popup\/icon128.png", "default_popup": "popup\/popup.html", "default_title": "RedditNav" }, "icons": { "48": "popup\/icon48.png", "128": "popup\/icon128.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ "redditnav.html" ], "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/r\/*\/comments\/*" ], "css": [ "redditnav.css" ], "js": [ "redditnav.js" ] } ] } |