Simplify Twitter
Reduces Twitter interface to the bare minimum
ما هو Simplify Twitter؟
Simplify Twitter هو إضافة Chrome تم تطويرها بواسطة https://simpl.fyi، والميزة الرئيسية لها هي "Reduces Twitter interface to the bare minimum".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Simplify Twitter
قم بتنزيل ملفات الامتداد Simplify Twitter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Only simplifies the main feed and messages right now... more to do.
معلومات أساسية عن التمديد
الاسم | Simplify Twitter |
ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
الوصف | Reduces Twitter interface to the bare minimum |
حجم الملف | 17.24 KB |
عدد التثبيتات | 47 |
النسخة الحالية | 1.4.10 |
آخر تحديث | 2024-02-16 |
تاريخ النشر | 2022-12-20 |
المطور | https://simpl.fyi |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://simpl.fyi/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simplify Twitter", "version": "1.4.10", "manifest_version": 3, "description": "Reduces Twitter interface to the bare minimum", "homepage_url": "https:\/\/simpl.fyi", "icons": { "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "js\/util.js", "js\/constants.js", "js\/observers.js", "js\/main.js" ], "css": [ "css\/style.css" ], "run_at": "document_start", "all_frames": false } ], "web_accessible_resources": [ { "resources": [ "img\/*" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self'" } } |