Solanatip
A chrome extension to tip your favorite tweets with $SOL
O que é Solanatip?
Solanatip é uma extensão do Chrome desenvolvida por emoreno911, e sua principal característica é "A chrome extension to tip your favorite tweets with $SOL".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Solanatip
Baixe arquivos de extensão Solanatip 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
Solanatip is a Chrome extension who allows you to reward your favorite content on Twitter with $SOL. It works using the new Solana Name Service for Twitter, with this service we can check if the user to receive the tip has an associated wallet and proceed to make the transaction. Works with your Phantom or Sollet wallet.
Informações Básicas da Extensão
Nome | |
ID | mclnpalkmbiijhhflmfimabcplbleiek |
URL Oficial | https://chromewebstore.google.com/detail/solanatip/mclnpalkmbiijhhflmfimabcplbleiek |
Descrição | A chrome extension to tip your favorite tweets with $SOL |
Tamanho do Arquivo | 7.26 MB |
Contagem de Instalações | 134 |
Versão Atual | 1.2.2 |
Última Atualização | 2021-09-27 |
Data de Publicação | 2021-06-12 |
Desenvolvedor | emoreno911 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://solanatip.io |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension to tip your favorite tweets with $SOL", "version": "1.2.2", "name": "Solanatip", "options_page": "options.html", "background": { "page": "background.html" }, "browser_action": { "default_popup": "popup.html", "default_icon": "solatip-34.png" }, "icons": { "34": "solatip-34.png", "128": "solatip-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "devtools_page": "devtools.html", "web_accessible_resources": [ "solanaWeb3.min.js", "injectedScript.js", "content.styles.css", "solatip-128.png", "solatip-34.png" ], "permissions": [ "https:\/\/solanatip.io\/", "storage" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |