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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |