Latest Tweets First
Always show latest tweets with the new Twitter Layout.
Что такое Latest Tweets First?
Latest Tweets First - это расширение Chrome, разработанное https://latesttweetsfirst.com, и его основная функция - "Always show latest tweets with the new Twitter Layout.".
Снимки экрана расширения
Скачать файл CRX расширения Latest Tweets First
Скачайте файлы расширений Latest Tweets First в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
"The new Twitter layout is amazing!" — someone must have said it, but it wasn't us. The thing we disliked most about the new Twitter design is when you filter by 'Latest' tweets, it soon reverts back to 'Top' tweets. With Latest Tweets First, your Twitter feed will automatically show the latest tweets — and *always* the latest tweets — from the people you follow.
Основная информация о расширении
Название | Latest Tweets First |
ID | hfiojngnjcplepmpggjdlnhilccafgaf |
Официальный URL | https://chromewebstore.google.com/detail/latest-tweets-first/hfiojngnjcplepmpggjdlnhilccafgaf |
Описание | Always show latest tweets with the new Twitter Layout. |
Размер файла | 7.04 KB |
Количество установок | 626 |
Текущая Версия | 1.1.3 |
Последнее Обновление | 2019-07-30 |
Дата публикации | 2019-07-30 |
Рейтинг | 4.11/5 Всего 9 оценок |
Разработчик | https://latesttweetsfirst.com |
Тип оплаты | free |
Официальный сайт расширения | https://latesttweetsfirst.com |
URL страницы помощи | https://latesttweetsfirst.com/contact |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "128": "src\/icon.png" }, "browser_action": { "default_icon": { "128": "src\/icon.png" } }, "content_scripts": [ { "js": [ ".\/src\/content.js" ], "matches": [ "https:\/\/www.twitter.com\/*", "https:\/\/twitter.com\/*" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ ".\/src\/background.js" ] }, "description": "Always show latest tweets with the new Twitter Layout.", "manifest_version": 2, "name": "Latest Tweets First", "short_name": "Latest Tweets First", "permissions": [], "version": "1.1.3" } |