Chirp Silencer
Mute unwanted tweets from your timeline
Chirp Silencerคืออะไร?
Chirp Silencer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chirpsilencer.com และคุณลักษณะหลักของมันคือ "Mute unwanted tweets from your timeline"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chirp Silencer
ดาวน์โหลดไฟล์ส่วนขยาย Chirp Silencer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chirp Silencer |
ID | hfmapnknalalilhipleaejemjckikadp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp |
คำอธิบาย | Mute unwanted tweets from your timeline |
ขนาดไฟล์ | 15.03 KB |
จำนวนการติดตั้ง | 37 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2023-08-22 |
วันที่เผยแพร่ | 2023-08-22 |
ผู้พัฒนา | https://chirpsilencer.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.chirpsilencer.com |
URL หน้าช่วยเหลือ | https://www.chirpsilencer.com |
ภาษาที่รองรับ | 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" } ] } |