Chirp Silencer
Mute unwanted tweets from your timeline
Apa itu Chirp Silencer?
Chirp Silencer adalah ekstensi Chrome yang dikembangkan oleh https://chirpsilencer.com, dan fitur utamanya adalah "Mute unwanted tweets from your timeline".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chirp Silencer
Unduh file ekstensi Chirp Silencer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Chirp Silencer |
ID | hfmapnknalalilhipleaejemjckikadp |
URL Resmi | https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp |
Deskripsi | Mute unwanted tweets from your timeline |
Ukuran File | 15.03 KB |
Jumlah Instalasi | 37 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2023-08-22 |
Tanggal Publikasi | 2023-08-22 |
Pengembang | https://chirpsilencer.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.chirpsilencer.com |
URL Halaman Bantuan | https://www.chirpsilencer.com |
Bahasa yang Didukung | 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" } ] } |