Legacy Verified
Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
Co to jest Legacy Verified?
Legacy Verified to rozszerzenie Chrome opracowane przez robert.spier, a jego główną funkcją jest „Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Legacy Verified
Pobierz pliki rozszerzeń Legacy Verified w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Legacy Verified |
ID | kpaemodmgoobmechkcplpffkpfbpebnm |
Oficjalny URL | https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm |
Opis | Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter |
Rozmiar pliku | 5.09 MB |
Liczba instalacji | 275 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2023-04-27 |
Data Publikacji | 2023-04-27 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | robert.spier |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/roberrrt-s/legacy-verified-extension |
Adres URL Strony Pomocy | https://github.com/roberrrt-s/legacy-verified-extension/issues |
Obsługiwane Języki | 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" ] } ] } |