Chirp Silencer
Mute unwanted tweets from your timeline
Co to jest Chirp Silencer?
Chirp Silencer to rozszerzenie Chrome opracowane przez https://chirpsilencer.com, a jego główną funkcją jest „Mute unwanted tweets from your timeline”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Chirp Silencer
Pobierz pliki rozszerzeń Chirp Silencer 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
Tired of all the noise on Twitter / X? So are we. With our browser extension, you can easily add dozens of words to your mute list and finally have a readable news feed without the fuss. We do not collect or store any personal information. Even your lists are yours. Want to store them on Github Gist? No problem! Prefer Pastebin? That's fine too. As long as your lists follow the required syntax and are available, we'll do the rest.
Podstawowe informacje o rozszerzeniu
Nazwa | Chirp Silencer |
ID | hfmapnknalalilhipleaejemjckikadp |
Oficjalny URL | https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp |
Opis | Mute unwanted tweets from your timeline |
Rozmiar pliku | 15.03 KB |
Liczba instalacji | 37 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2023-08-22 |
Data Publikacji | 2023-08-22 |
Deweloper | https://chirpsilencer.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.chirpsilencer.com |
Adres URL Strony Pomocy | https://www.chirpsilencer.com |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chirp Silencer", "description": "Mute unwanted tweets from your timeline", "version": "0.1", "manifest_version": 3, "background": { "service_worker": "\/scripts\/background.js", "type": "module" }, "action": { "default_icon": "\/images\/logo.png" }, "permissions": [ "activeTab", "scripting" ], "icons": { "16": "\/images\/logo.png", "48": "\/images\/logo.png", "128": "\/images\/logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/settings\/add_muted_keyword", "https:\/\/*.x.com\/settings\/add_muted_keyword" ], "js": [ "\/scripts\/content.js" ], "css": [ "\/styles\/content.css" ], "run_at": "document_idle" } ] } |