Reddit Top-Level Comment Scroller
Helps you scroll between top level comments on Reddit
Co to jest Reddit Top-Level Comment Scroller?
Reddit Top-Level Comment Scroller to rozszerzenie Chrome opracowane przez Eddy, a jego główną funkcją jest „Helps you scroll between top level comments on Reddit”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reddit Top-Level Comment Scroller
Pobierz pliki rozszerzeń Reddit Top-Level Comment Scroller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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)
Podstawowe informacje o rozszerzeniu
Nazwa | Reddit Top-Level Comment Scroller |
ID | eijkojfjamombpgmepnneefgcakogimc |
Oficjalny URL | https://chromewebstore.google.com/detail/reddit-top-level-comment/eijkojfjamombpgmepnneefgcakogimc |
Opis | Helps you scroll between top level comments on Reddit |
Rozmiar pliku | 77.54 KB |
Liczba instalacji | 177 |
Aktualna Wersja | 1.9 |
Ostatnia Aktualizacja | 2016-06-11 |
Data Publikacji | 2016-06-11 |
Ocena | 4.57/5 Łącznie 28 Oceny |
Deweloper | Eddy |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ghedsouza/reddit-top-level-comment-scroller |
Obsługiwane Języki | 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" } |