Legacy Verified
Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
ما هو Legacy Verified؟
Legacy Verified هو إضافة Chrome تم تطويرها بواسطة robert.spier، والميزة الرئيسية لها هي "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Legacy Verified
قم بتنزيل ملفات الامتداد Legacy Verified بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The Legacy Verified Extension enables people to add a verified logo next to names of accounts on Twitter that were previously verified. Uses data provided by Travis Brown and initiated by Oliver Alexander. It is being developed by Robert Spier
معلومات أساسية عن التمديد
الاسم | Legacy Verified |
ID | kpaemodmgoobmechkcplpffkpfbpebnm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm |
الوصف | Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter |
حجم الملف | 5.09 MB |
عدد التثبيتات | 275 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2023-04-27 |
تاريخ النشر | 2023-04-27 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | robert.spier |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/roberrrt-s/legacy-verified-extension |
عنوان صفحة المساعدة | https://github.com/roberrrt-s/legacy-verified-extension/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Legacy Verified", "version": "1.0.2", "description": "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_title": "Legacy Verified Extension", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "\/icons\/*.png", "legacy-verified.csv" ], "matches": [ "*:\/\/twitter.com\/*", "*:\/\/*.twitter.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ] }, { "matches": [ "*:\/\/*.twitter.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ] } |