Legacy Verified
Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
Legacy Verified là gì?
Legacy Verified là một tiện ích mở rộng Chrome được phát triển bởi robert.spier, và tính năng chính của nó là "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Legacy Verified
Tải xuống các tệp mở rộng Legacy Verified dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Legacy Verified |
ID | kpaemodmgoobmechkcplpffkpfbpebnm |
URL Chính Thức | https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm |
Mô tả | Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter |
Kích Thước Tệp | 5.09 MB |
Số Lần Cài Đặt | 275 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2023-04-27 |
Ngày Phát Hành | 2023-04-27 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | robert.spier |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/roberrrt-s/legacy-verified-extension |
URL Trang Trợ Giúp | https://github.com/roberrrt-s/legacy-verified-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |