Twitter Bot Hider
Hides twitter bots from your timeline.
ما هو Twitter Bot Hider؟
Twitter Bot Hider هو إضافة Chrome تم تطويرها بواسطة Ebu، والميزة الرئيسية لها هي "Hides twitter bots from your timeline.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitter Bot Hider
قم بتنزيل ملفات الامتداد Twitter Bot Hider بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies. The source code can be found here: https://github.com/EbuOgden/TwitterBotHider
معلومات أساسية عن التمديد
الاسم | Twitter Bot Hider |
ID | efpmoenhggjbiaeomapapohigijbobgb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb |
الوصف | Hides twitter bots from your timeline. |
حجم الملف | 40.87 KB |
عدد التثبيتات | 33 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2022-10-31 |
تاريخ النشر | 2022-10-31 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | Ebu |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Bot Hider", "version": "0.1.1", "description": "Hides twitter bots from your timeline.", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "https:\/\/*.githubusercontent.com\/*" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "Twitter Bot Hider", "default_popup": "popup.html" }, "manifest_version": 3 } |