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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | 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" ] } ] } |