Better Twitter
Hide what's not important on Twitter.com
Что такое Better Twitter?
Better Twitter - это расширение Chrome, разработанное Razvan Caliman, и его основная функция - "Hide what's not important on Twitter.com".
Снимки экрана расширения
Скачать файл CRX расширения Better Twitter
Скачайте файлы расширений Better Twitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Bug reports and feature requests go here:
https://github.com/oslego/better-twitter/issues
Toggle these preferences on the extension's options page:
- No fame: Hide number of followers and following count
- No vanity: Hide number of tweet likes, retweets and replies
- Hide promoted tweets
- Hide retweets
- Hide tweets liked by others
- Hide “Trends for you”
- Hide “Who to follow”
- Hide website footer Основная информация о расширении
| Название | |
| ID | illmpnnkeobcgnnjghammeohfjpjoljp |
| Официальный URL | https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp |
| Описание | Hide what's not important on Twitter.com |
| Размер файла | 11.05 KB |
| Количество установок | 3,699 |
| Текущая Версия | 2.1.2 |
| Последнее Обновление | 2023-01-16 |
| Дата публикации | 2020-06-03 |
| Рейтинг | 3.65/5 Всего 31 оценок |
| Разработчик | Razvan Caliman |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/oslego/better-twitter/ |
| URL страницы помощи | https://github.com/oslego/better-twitter/issues |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Better Twitter",
"version": "2.1.2",
"description": "Hide what's not important on Twitter.com",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{ef32ca60-1728-4011-a585-4de439fe7ba7}"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false,
"browser_style": true,
"chrome_style": true
},
"icons": {
"64": "icon-64.png",
"128": "icon-128.png"
},
"browser_action": {
"browser_style": true,
"default_popup": "options.html"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"options.js",
"prefs.js"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*"
],
"css": [
"content.css"
],
"js": [
"utils.js",
"prefs.js",
"content.js"
]
}
]
} | |