Keep Twitter scroll position
Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.
Hvad er Keep Twitter scroll position?
Keep Twitter scroll position er en Chrome-udvidelse udviklet af Anirudh, og dens hovedfunktion er "Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.".
Udvidelsesskærmbilleder
Download Keep Twitter scroll position-udvidelses-CRX-fil
Download Keep Twitter scroll position-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
When you're browsing the replies, and replies-to-replies, of a popular tweet, you may be surprised to see that hitting the back button from a 'replies-to-replies' thread puts you back at the start of the original reply thread, instead of at the position you last were. You now have to scroll down (sometimes a long way down) to continue your reading of the original tweet's replies. This extension fixes the user experience by auto-scrolling to your last position in the reply thread, and highlighting the tweet you last read. This extension is open-source. The source code is here: https://github.com/ackinc/keep-twitter-scroll-position
Grundlæggende oplysninger om udvidelsen
Navn | Keep Twitter scroll position |
ID | ohikllclmilbneljmbnkikjciogdhgfo |
Officiel URL | https://chromewebstore.google.com/detail/keep-twitter-scroll-posit/ohikllclmilbneljmbnkikjciogdhgfo |
Beskrivelse | Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that. |
Filstørrelse | 3 MB |
Antal Installationer | 322 |
Nuværende Version | 1.2 |
Senest Opdateret | 2024-01-13 |
Udgivelsesdato | 2023-12-02 |
Bedømmelse | 5.00/5 Samlet 5 Bedømmelser |
Udvikler | Anirudh |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/ackinc/keep-twitter-scroll-position |
Hjælpeside-URL | https://github.com/ackinc/keep-twitter-scroll-position/issues |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Keep Twitter scroll position", "description": "Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.", "version": "1.2", "icons": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ] } |