Simplify Twitter Web UI
Simplify the new Twitter Web UI
Что такое Simplify Twitter Web UI?
Simplify Twitter Web UI - это расширение Chrome, разработанное lukeed, и его основная функция - "Simplify the new Twitter Web UI".
Снимки экрана расширения
Скачать файл CRX расширения Simplify Twitter Web UI
Скачайте файлы расширений Simplify Twitter Web UI в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
**Why?**
- I don't like 3-column layouts (too busy)
- Hide "Trending For you" stuff – usually in the right sidebar
- Attempt to hide "Promoted Tweets" – currently works, but don't count on it
See the website for more info. Основная информация о расширении
| Название | |
| ID | pobjlebhmdjbgfjhfdhblilmpjkegbfd |
| Официальный URL | https://chromewebstore.google.com/detail/simplify-twitter-web-ui/pobjlebhmdjbgfjhfdhblilmpjkegbfd |
| Описание | Simplify the new Twitter Web UI |
| Размер файла | 10.53 KB |
| Количество установок | 383 |
| Текущая Версия | 2.0.0 |
| Последнее Обновление | 2019-06-29 |
| Дата публикации | 2019-06-29 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | lukeed |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/lukeed/twitter-simple-extension |
| URL страницы помощи | https://github.com/lukeed/twitter-simple-extension/issues |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Simplify Twitter Web UI",
"version": "2.0.0",
"manifest_version": 2,
"description": "Simplify the new Twitter Web UI",
"homepage_url": "https:\/\/github.com\/lukeed\/twitter-simple-extension",
"icons": {
"128": "128x128.png"
},
"permissions": [
"https:\/\/twitter.com\/*",
"https:\/\/*.twitter.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/*\/twitter.com\/*"
],
"js": [
"index.min.js"
]
}
]
} | |