Keep Twitter scroll position
Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.
Apa itu Keep Twitter scroll position?
Keep Twitter scroll position adalah ekstensi Chrome yang dikembangkan oleh Anirudh, dan fitur utamanya adalah "Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Keep Twitter scroll position
Unduh file ekstensi Keep Twitter scroll position dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Keep Twitter scroll position |
ID | ohikllclmilbneljmbnkikjciogdhgfo |
URL Resmi | https://chromewebstore.google.com/detail/keep-twitter-scroll-posit/ohikllclmilbneljmbnkikjciogdhgfo |
Deskripsi | Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that. |
Ukuran File | 3 MB |
Jumlah Instalasi | 322 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2024-01-13 |
Tanggal Publikasi | 2023-12-02 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | Anirudh |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/ackinc/keep-twitter-scroll-position |
URL Halaman Bantuan | https://github.com/ackinc/keep-twitter-scroll-position/issues |
Bahasa yang Didukung | 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\/*" ] } ] } |