remove-twitter-trends
Switches Twitter trending topics off
Co to jest remove-twitter-trends?
remove-twitter-trends to rozszerzenie Chrome opracowane przez Andre Alves Garzia, a jego główną funkcją jest „Switches Twitter trending topics off”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia remove-twitter-trends
Pobierz pliki rozszerzeń remove-twitter-trends 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
This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac |
| Oficjalny URL | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac |
| Opis | Switches Twitter trending topics off |
| Rozmiar pliku | 1.45 MB |
| Liczba instalacji | 918 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2021-12-31 |
| Data Publikacji | 2021-12-31 |
| Ocena | 3.43/5 Łącznie 7 Oceny |
| Deweloper | Andre Alves Garzia |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "remove-twitter-trends",
"description": "Switches Twitter trending topics off",
"version": "1.0.1",
"icons": {
"64": "icons\/icon512.png"
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*"
],
"css": [
"style.css"
],
"js": [
"browser-polyfill.js",
"mithril.js",
"content_script.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options\/index.html"
},
"permissions": [
"webNavigation",
"storage"
]
} | |