Hide Retweets
Remove retweets by specific users or everyone on Twitter
ما هو Hide Retweets؟
Hide Retweets هو إضافة Chrome تم تطويرها بواسطة Kevin Leutzinger، والميزة الرئيسية لها هي "Remove retweets by specific users or everyone on Twitter".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Hide Retweets
قم بتنزيل ملفات الامتداد Hide Retweets بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Got a friend who retweets too much? Hide/Block/Remove retweets from a specific list of users, or hide everyone's retweets. Retweets are collapsed and can be viewed if clicked. Source: https://github.com/kleutzinger/Hide-Retweets-Extension
معلومات أساسية عن التمديد
الاسم | |
ID | iehhaigbokpilpilegajanpckfgbegdm |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/hide-retweets/iehhaigbokpilpilegajanpckfgbegdm |
الوصف | Remove retweets by specific users or everyone on Twitter |
حجم الملف | 334 KB |
عدد التثبيتات | 89 |
النسخة الحالية | 0.2 |
آخر تحديث | 2018-02-07 |
تاريخ النشر | 2018-02-07 |
تقييم | 2.09/5 مجموع تقييمات 11 |
المطور | Kevin Leutzinger |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Retweets", "description": "Remove retweets by specific users or everyone on Twitter", "version": "0.2", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon16.png", "48": "img\/icon48.png", "64": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "js\/underscore-1.5.2.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/underscore-1.5.2.min.js", "js\/content.js" ], "run_at": "document_end" } ] } |