Twitter Safe Checkmark
Helps you distinguish between actually verified and paid Twitter accounts
Cos'è Twitter Safe Checkmark?
Twitter Safe Checkmark è un'estensione di Chrome sviluppata da deltaspider, e la sua funzione principale è "Helps you distinguish between actually verified and paid Twitter accounts".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Safe Checkmark
Scarica i file di estensione Twitter Safe Checkmark 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
Twitter Safe Checkmark Quickly see if a Twitter account is officially verified (the way it used to be), if the account holder simply paid for the blue checkmark. Also shows official business or government accounts. You can choose a different color for each Twitter account type.
Informazioni di Base sull'Estensione
Nome | Twitter Safe Checkmark |
ID | mpfelaapmlbgjblkdmdijaokggfdmfgj |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-safe-checkmark/mpfelaapmlbgjblkdmdijaokggfdmfgj |
Descrizione | Helps you distinguish between actually verified and paid Twitter accounts |
Dimensione del File | 66.82 KB |
Conteggio Installazioni | 210 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2023-03-23 |
Data di Pubblicazione | 2022-11-14 |
Valutazione | 3.80/5 Totale 5 Valutazioni |
Sviluppatore | deltaspider |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.bubblespider.com/privacy-policy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitter Safe Checkmark", "version": "1.0.5", "description": "Helps you distinguish between actually verified and paid Twitter accounts", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "js": [ "import-content.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] } ], "action": { "default_popup": "pages\/popup\/index.html", "default_icon": { "16": "img\/logo16.png", "32": "img\/logo32.png", "48": "img\/logo48.png", "128": "img\/logo128.png" } }, "icons": { "48": "img\/logo48.png", "128": "img\/logo128.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "script_twitter_check.js", "img\/*.png", "img\/*.svg", "pages\/*.html" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] }, { "resources": [ "chunks\/*-*.js", "content.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] } ] } |