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是由Anirudh開發的Chrome擴展程式,該擴展的主要功能是“Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.”。
擴展截圖
下載Keep Twitter scroll position擴展crx文件
下載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 |
官方網址 | 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\/*" ] } ] } |