Legacy Verified
Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
Cos'è Legacy Verified?
Legacy Verified è un'estensione di Chrome sviluppata da robert.spier, e la sua funzione principale è "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Legacy Verified
Scarica i file di estensione Legacy Verified in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Legacy Verified |
ID | kpaemodmgoobmechkcplpffkpfbpebnm |
URL Ufficiale | https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm |
Descrizione | Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter |
Dimensione del File | 5.09 MB |
Conteggio Installazioni | 275 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2023-04-27 |
Data di Pubblicazione | 2023-04-27 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | robert.spier |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/roberrrt-s/legacy-verified-extension |
URL della Pagina di Aiuto | https://github.com/roberrrt-s/legacy-verified-extension/issues |
Lingue Supportate | 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" ] } ] } |