Simplified Twitter
Remove distractions from the new Twitter layout
Что такое Simplified Twitter?
Simplified Twitter - это расширение Chrome, разработанное Bruno Lemos, и его основная функция - "Remove distractions from the new Twitter layout".
Снимки экрана расширения
Скачать файл CRX расширения Simplified Twitter
Скачайте файлы расширений Simplified Twitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Improve the Twitter experience by decluttering the layout: No trends column, no giant menu, no distracting elements. Focus on what matters: the tweets.
AVAILABLE FOR ALL BROWSERS. Основная информация о расширении
| Название | |
| ID | kfopmjhmejbgomgeajemgpgpbckpoopg |
| Официальный URL | https://chromewebstore.google.com/detail/simplified-twitter/kfopmjhmejbgomgeajemgpgpbckpoopg |
| Описание | Remove distractions from the new Twitter layout |
| Размер файла | 14.05 KB |
| Количество установок | 2,394 |
| Текущая Версия | 1.8.1 |
| Последнее Обновление | 2023-11-22 |
| Дата публикации | 2020-04-25 |
| Рейтинг | 4.70/5 Всего 20 оценок |
| Разработчик | Bruno Lemos |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/brunolemos/simplified-twitter |
| URL страницы помощи | https://github.com/brunolemos/simplified-twitter |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Simplified Twitter",
"version": "1.8.1",
"description": "Remove distractions from the new Twitter layout",
"short_name": "Simplified Twitter",
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/x.com\/*",
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*"
],
"css": [
"styles.css"
],
"js": [
"index.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"96": "icons\/icon96.png",
"128": "icons\/icon128.png"
}
} | |