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\/*" ] } ] } |