Twitter Stress Reduction
Twitter Stress Reduction
ما هو Twitter Stress Reduction؟
Twitter Stress Reduction هو إضافة Chrome تم تطويرها بواسطة https://shirouzu.jp، والميزة الرئيسية لها هي "Twitter Stress Reduction".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitter Stress Reduction
قم بتنزيل ملفات الامتداد Twitter Stress Reduction بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A mini tool to use Twitter comfortably. - Hide 'ForYou/Trending/What's happened/etc' entries. - Fold/Unfold button for tweet image.
معلومات أساسية عن التمديد
الاسم | Twitter Stress Reduction |
ID | ipnjgahnocpaefhffbnnjonihlihoeic |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic |
الوصف | Twitter Stress Reduction |
حجم الملف | 49.66 KB |
عدد التثبيتات | 14,213 |
النسخة الحالية | 0.3.5.1 |
آخر تحديث | 2024-01-09 |
تاريخ النشر | 2020-06-02 |
تقييم | 4.89/5 مجموع تقييمات 38 |
المطور | https://shirouzu.jp |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://shirouzu.jp/tech/twitter-stress-reduction |
عنوان صفحة المساعدة | https://groups.google.com/g/twitter-stress-reduction |
اللغات المدعومة | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_desc__", "manifest_version": 2, "version": "0.3.5.1", "description": "__MSG_desc__", "default_locale": "ja", "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "js": [ "tw_fold.js" ] } ], "browser_action": { "default_icon": "tw16.png", "default_title": "Twitter Stress Reduction" }, "background": { "scripts": [ "tw_background.js" ] }, "options_ui": { "page": "tw_fold.html", "open_in_tab": true }, "web_accessible_resources": [ "tw_fold.html" ], "icons": { "16": "tw16.png", "48": "tw48.png", "128": "tw128.png" }, "permissions": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "contextMenus", "storage" ] } |