Chirp Silencer
Mute unwanted tweets from your timeline
Chirp Silencer là gì?
Chirp Silencer là một tiện ích mở rộng Chrome được phát triển bởi https://chirpsilencer.com, và tính năng chính của nó là "Mute unwanted tweets from your timeline".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Chirp Silencer
Tải xuống các tệp mở rộng Chirp Silencer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chirp Silencer |
ID | hfmapnknalalilhipleaejemjckikadp |
URL Chính Thức | https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp |
Mô tả | Mute unwanted tweets from your timeline |
Kích Thước Tệp | 15.03 KB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2023-08-22 |
Ngày Phát Hành | 2023-08-22 |
Nhà Phát Triển | https://chirpsilencer.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.chirpsilencer.com |
URL Trang Trợ Giúp | https://www.chirpsilencer.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |