Twitter Safe Checkmark
Helps you distinguish between actually verified and paid Twitter accounts
¿Qué es Twitter Safe Checkmark?
Twitter Safe Checkmark es una extensión de Chrome desarrollada por deltaspider, y su función principal es "Helps you distinguish between actually verified and paid Twitter accounts".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter Safe Checkmark
Descarga archivos de extensión Twitter Safe Checkmark en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Twitter Safe Checkmark |
ID | mpfelaapmlbgjblkdmdijaokggfdmfgj |
URL Oficial | https://chromewebstore.google.com/detail/twitter-safe-checkmark/mpfelaapmlbgjblkdmdijaokggfdmfgj |
Descripción | Helps you distinguish between actually verified and paid Twitter accounts |
Tamaño del Archivo | 66.82 KB |
Cantidad de Instalaciones | 210 |
Versión Actual | 1.0.5 |
Última Actualización | 2023-03-23 |
Fecha de Publicación | 2022-11-14 |
Calificación | 3.80/5 Total de 5 Calificaciones |
Desarrollador | deltaspider |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.bubblespider.com/privacy-policy |
Idiomas Soportados | 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\/*" ] } ] } |