Clean Twitter
Remove all the annoying clutter from your Twitter.
ما هو Clean Twitter؟
Clean Twitter هو إضافة Chrome تم تطويرها بواسطة dhaiwatpandya، والميزة الرئيسية لها هي "Remove all the annoying clutter from your Twitter.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Clean Twitter
قم بتنزيل ملفات الامتداد Clean Twitter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Enhance your Twitter experience by removing some of the clutter. Currently supported features: 1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc) 2) No metrics/numbers (Likes, RTs, replies, followers) You can turn any of the features on and off at any time. This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.
معلومات أساسية عن التمديد
الاسم | Clean Twitter |
ID | ibcjnfhpdjinbcmojnmpnokcgfljiebb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb |
الوصف | Remove all the annoying clutter from your Twitter. |
حجم الملف | 98.75 KB |
عدد التثبيتات | 306 |
النسخة الحالية | 0.3.0 |
آخر تحديث | 2021-02-26 |
تاريخ النشر | 2021-02-16 |
تقييم | 4.00/5 مجموع تقييمات 4 |
المطور | dhaiwatpandya |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Dhaiwat10/clean-twitter |
عنوان صفحة المساعدة | https://github.com/Dhaiwat10/clean-twitter/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean Twitter", "description": "Remove all the annoying clutter from your Twitter.", "version": "0.3.0", "icons": { "16": "icon.png", "32": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery.js", "js\/content.js", "js\/popup.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_title": "Clean Twitter", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs" ] } |