Better Twitter
Hide what's not important on Twitter.com
Co to jest Better Twitter?
Better Twitter to rozszerzenie Chrome opracowane przez Razvan Caliman, a jego główną funkcją jest „Hide what's not important on Twitter.com”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Twitter
Pobierz pliki rozszerzeń Better Twitter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | illmpnnkeobcgnnjghammeohfjpjoljp |
| Oficjalny URL | https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp |
| Opis | Hide what's not important on Twitter.com |
| Rozmiar pliku | 11.05 KB |
| Liczba instalacji | 3,699 |
| Aktualna Wersja | 2.1.2 |
| Ostatnia Aktualizacja | 2023-01-16 |
| Data Publikacji | 2020-06-03 |
| Ocena | 3.65/5 Łącznie 31 Oceny |
| Deweloper | Razvan Caliman |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/oslego/better-twitter/ |
| Adres URL Strony Pomocy | https://github.com/oslego/better-twitter/issues |
| Obsługiwane Języki | 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"
]
}
]
} | |