Twitter Safe Checkmark
Helps you distinguish between actually verified and paid Twitter accounts
O que é Twitter Safe Checkmark?
Twitter Safe Checkmark é uma extensão do Chrome desenvolvida por deltaspider, e sua principal característica é "Helps you distinguish between actually verified and paid Twitter accounts".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter Safe Checkmark
Baixe arquivos de extensão Twitter Safe Checkmark no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Twitter Safe Checkmark |
ID | mpfelaapmlbgjblkdmdijaokggfdmfgj |
URL Oficial | https://chromewebstore.google.com/detail/twitter-safe-checkmark/mpfelaapmlbgjblkdmdijaokggfdmfgj |
Descrição | Helps you distinguish between actually verified and paid Twitter accounts |
Tamanho do Arquivo | 66.82 KB |
Contagem de Instalações | 210 |
Versão Atual | 1.0.5 |
Última Atualização | 2023-03-23 |
Data de Publicação | 2022-11-14 |
Classificação | 3.80/5 Total de 5 Avaliações |
Desenvolvedor | deltaspider |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.bubblespider.com/privacy-policy |
Idiomas Suportados | 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\/*" ] } ] } |