Keep Twitter scroll position
Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.
Keep Twitter scroll positionคืออะไร?
Keep Twitter scroll position เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anirudh และคุณลักษณะหลักของมันคือ "Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keep Twitter scroll position
ดาวน์โหลดไฟล์ส่วนขยาย Keep Twitter scroll position ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Keep Twitter scroll position |
ID | ohikllclmilbneljmbnkikjciogdhgfo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/keep-twitter-scroll-posit/ohikllclmilbneljmbnkikjciogdhgfo |
คำอธิบาย | Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that. |
ขนาดไฟล์ | 3 MB |
จำนวนการติดตั้ง | 322 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2024-01-13 |
วันที่เผยแพร่ | 2023-12-02 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Anirudh |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ackinc/keep-twitter-scroll-position |
URL หน้าช่วยเหลือ | https://github.com/ackinc/keep-twitter-scroll-position/issues |
ภาษาที่รองรับ | 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\/*" ] } ] } |