Twitter Timeline Eradicator
Get rid of your Twitter addiction
Что такое Twitter Timeline Eradicator?
Twitter Timeline Eradicator - это расширение Chrome, разработанное Grant Gumina, и его основная функция - "Get rid of your Twitter addiction".
Снимки экрана расширения
Скачать файл CRX расширения Twitter Timeline Eradicator
Скачайте файлы расширений Twitter Timeline Eradicator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Break your Twitter addiction by removing all the distractions from the platform. This extension removes Twitter timelines and replaces them with an interesting quote instead.
Основная информация о расширении
Название | |
ID | jkdloljnomnhbkifgmiobaaajfemiccm |
Официальный URL | https://chrome.google.com/webstore/detail/twitter-timeline-eradicat/jkdloljnomnhbkifgmiobaaajfemiccm |
Описание | Get rid of your Twitter addiction |
Размер файла | 82.83 KB |
Количество установок | 47 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2017-10-31 |
Дата публикации | 2017-10-31 |
Рейтинг | 1.43/5 Всего 7 оценок |
Разработчик | Grant Gumina |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/grantgumina/twitter-timeline-eradicator |
URL страницы помощи | https://github.com/grantgumina/twitter-timeline-eradicator |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Timeline Eradicator", "short_name": "Twitter Timeline Eradicator", "version": "0.0.2", "description": "Get rid of your Twitter addiction", "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "run_at": "document_start", "css": [ "css\/eradicate.css" ] }, { "matches": [ "*:\/\/*.twitter.com\/*" ], "run_at": "document_end", "js": [ "js\/content.js" ], "css": [ "css\/quote.css" ] } ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" } } |