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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } ] } |