Disable Twitter Feed
Removes the timeline on Twitter's homepage.
Что такое Disable Twitter Feed?
Disable Twitter Feed - это расширение Chrome, разработанное https://lukasrosenstock.net, и его основная функция - "Removes the timeline on Twitter's homepage.".
Снимки экрана расширения
Скачать файл CRX расширения Disable Twitter Feed
Скачайте файлы расширений Disable Twitter Feed в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The Twitter timeline can be a rabbit-hole that hurts your productivity. Disable Twitter Feed is a minimalist, single-purpose add-on without any configuration options. It does one thing: removing the timeline on Twitter's homepage. All other functionality (e.g., private messages, opening individual profiles) remains intact.
Основная информация о расширении
Название | Disable Twitter Feed |
ID | oppnglmfkpdfodnepgilhcagbbdojekd |
Официальный URL | https://chromewebstore.google.com/detail/disable-twitter-feed/oppnglmfkpdfodnepgilhcagbbdojekd |
Описание | Removes the timeline on Twitter's homepage. |
Размер файла | 8 KB |
Количество установок | 388 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-12-04 |
Дата публикации | 2020-12-03 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | https://lukasrosenstock.net |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Disable Twitter Feed", "version": "1.0", "description": "Removes the timeline on Twitter's homepage.", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "disablefeed.js" ], "run_at": "document_start" } ], "icons": { "48": "icon.png", "96": "[email protected]" } } |