remove-twitter-trends
Switches Twitter trending topics off
ما هو remove-twitter-trends؟
remove-twitter-trends هو إضافة Chrome تم تطويرها بواسطة Andre Alves Garzia، والميزة الرئيسية لها هي "Switches Twitter trending topics off".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة remove-twitter-trends
قم بتنزيل ملفات الامتداد remove-twitter-trends بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.
معلومات أساسية عن التمديد
الاسم | remove-twitter-trends |
ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac |
الوصف | Switches Twitter trending topics off |
حجم الملف | 1.45 MB |
عدد التثبيتات | 918 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2021-12-31 |
تاريخ النشر | 2021-12-31 |
تقييم | 3.43/5 مجموع تقييمات 7 |
المطور | Andre Alves Garzia |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "remove-twitter-trends", "description": "Switches Twitter trending topics off", "version": "1.0.1", "icons": { "64": "icons\/icon512.png" }, "background": { "scripts": [ "browser-polyfill.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "css": [ "style.css" ], "js": [ "browser-polyfill.js", "mithril.js", "content_script.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/index.html" }, "permissions": [ "webNavigation", "storage" ] } |