Chirp Silencer
Mute unwanted tweets from your timeline
Wat is Chirp Silencer?
Chirp Silencer is een Chrome-extensie ontwikkeld door https://chirpsilencer.com, en de belangrijkste functie is "Mute unwanted tweets from your timeline".
Extensie Screenshots
Download het CRX-bestand van de extensie Chirp Silencer
Download Chirp Silencer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Chirp Silencer |
ID | hfmapnknalalilhipleaejemjckikadp |
Officiële URL | https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp |
Beschrijving | Mute unwanted tweets from your timeline |
Bestandsgrootte | 15.03 KB |
Aantal Installaties | 37 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2023-08-22 |
Publicatiedatum | 2023-08-22 |
Ontwikkelaar | https://chirpsilencer.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.chirpsilencer.com |
Help Pagina-URL | https://www.chirpsilencer.com |
Ondersteunde Talen | 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" } ] } |