Twitter Timeline Eradicator
This extension removes timelines from twitter, to help you avoid mindless consumption.
Что такое Twitter Timeline Eradicator?
Twitter Timeline Eradicator - это расширение Chrome, разработанное Bryan, и его основная функция - "This extension removes timelines from twitter, to help you avoid mindless consumption.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter Timeline Eradicator
Скачайте файлы расширений Twitter Timeline Eradicator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
It hides the most addictive parts of Twitter, like the main timeline, the Explore timeline, moments, and Trending. It shows the most useful parts of twitter, like notifications, user profiles, individual tweets, and DMs.
Основная информация о расширении
Название | Twitter Timeline Eradicator |
ID | olmgbkhifmcfpaagiaakihcgobdkmchl |
Официальный URL | https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl |
Описание | This extension removes timelines from twitter, to help you avoid mindless consumption. |
Размер файла | 40.07 KB |
Количество установок | 1,073 |
Текущая Версия | 2.0.1 |
Последнее Обновление | 2020-07-20 |
Дата публикации | 2020-07-03 |
Рейтинг | 4.42/5 Всего 19 оценок |
Разработчик | Bryan |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/bryanbraun/twitter-timeline-eradicator |
URL страницы помощи | https://github.com/bryanbraun/twitter-timeline-eradicator/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Timeline Eradicator", "description": "This extension removes timelines from twitter, to help you avoid mindless consumption.", "version": "2.0.1", "permissions": [ "activeTab", "storage", "https:\/\/twitter.com\/" ], "browser_action": { "default_icon": "quiet-bird.png", "default_popup": "popup.html", "default_title": "Twitter Timeline Eradicator" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "clean.js" ], "css": [ "default.css" ] } ], "web_accessible_resources": [ "enable-main-timeline.css", "enable-trending.css" ] } |