Reddit Top-Level Comment Scroller
Helps you scroll between top level comments on Reddit
¿Qué es Reddit Top-Level Comment Scroller?
Reddit Top-Level Comment Scroller es una extensión de Chrome desarrollada por Eddy, y su función principal es "Helps you scroll between top level comments on Reddit".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Reddit Top-Level Comment Scroller
Descarga archivos de extensión Reddit Top-Level Comment Scroller 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
Keyboard and mouse wheel navigation for comments. Useful for reading large discussions. Use Shift+Up or Shift+Down to jump between top-level comments. Or, place your mouse over the box placed in the bottom-right corner and scroll between top-level comments using your mouse wheel. (The box can be disabled in the options.) Note: all code is released under the WTFPL Contributers: Matt Livezey (sitetable fix)
Información Básica de la Extensión
Nombre | Reddit Top-Level Comment Scroller |
ID | eijkojfjamombpgmepnneefgcakogimc |
URL Oficial | https://chromewebstore.google.com/detail/reddit-top-level-comment/eijkojfjamombpgmepnneefgcakogimc |
Descripción | Helps you scroll between top level comments on Reddit |
Tamaño del Archivo | 77.54 KB |
Cantidad de Instalaciones | 177 |
Versión Actual | 1.9 |
Última Actualización | 2016-06-11 |
Fecha de Publicación | 2016-06-11 |
Calificación | 4.57/5 Total de 28 Calificaciones |
Desarrollador | Eddy |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/ghedsouza/reddit-top-level-comment-scroller |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Top-Level Comment Scroller", "version": "1.9", "manifest_version": 2, "description": "Helps you scroll between top level comments on Reddit", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "lib\/prototype.js", "lib\/scriptaculous.js", "lib\/builder.js", "lib\/effects.js", "lib\/dragdrop.js", "lib\/slider.js", "lib\/controls.js", "scroll.js" ], "matches": [ "https:\/\/www.reddit.com\/*\/comments\/*" ], "run_at": "document_end" } ], "options_page": "options.html" } |