Chirp Silencer
Mute unwanted tweets from your timeline
Qu'est-ce que Chirp Silencer ?
Chirp Silencer est une extension Chrome développée par https://chirpsilencer.com, et sa fonction principale est "Mute unwanted tweets from your timeline".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chirp Silencer
Téléchargez les fichiers d'extension Chirp Silencer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Chirp Silencer |
ID | hfmapnknalalilhipleaejemjckikadp |
URL Officiel | https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp |
Description | Mute unwanted tweets from your timeline |
Taille du Fichier | 15.03 KB |
Nombre d'Installations | 37 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2023-08-22 |
Date de Publication | 2023-08-22 |
Développeur | https://chirpsilencer.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.chirpsilencer.com |
URL de la Page d'Aide | https://www.chirpsilencer.com |
Langues Prises en Charge | 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" } ] } |