Reddit Nav
Effortlessly scroll through comment threads on Reddit.
¿Qué es Reddit Nav?
Reddit Nav es una extensión de Chrome desarrollada por reddit-nav-developers, y su función principal es "Effortlessly scroll through comment threads on Reddit.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Reddit Nav
Descarga archivos de extensión Reddit Nav en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Reddit Nav |
ID | dpkijnoebmekoiafbkledpjhkpgllkfe |
URL Oficial | https://chromewebstore.google.com/detail/reddit-nav/dpkijnoebmekoiafbkledpjhkpgllkfe |
Descripción | Effortlessly scroll through comment threads on Reddit. |
Tamaño del Archivo | 81.92 KB |
Cantidad de Instalaciones | 199 |
Versión Actual | 1.1.2 |
Última Actualización | 2017-09-19 |
Fecha de Publicación | 2017-09-19 |
Calificación | 4.13/5 Total de 15 Calificaciones |
Desarrollador | reddit-nav-developers |
Tipo de Pago | free |
URL de la Página de Ayuda | http://github.com/justinthec/redditnav |
Idiomas Soportados | 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" ] } ] } |