Solanatip
A chrome extension to tip your favorite tweets with $SOL
What is Solanatip?
Solanatip is a Chrome extension developed by emoreno911, and its main feature is "A chrome extension to tip your favorite tweets with $SOL".
Extension Screenshots
Download Solanatip Extension CRX File
Download Solanatip extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | mclnpalkmbiijhhflmfimabcplbleiek |
Official URL | https://chromewebstore.google.com/detail/solanatip/mclnpalkmbiijhhflmfimabcplbleiek |
Description | A chrome extension to tip your favorite tweets with $SOL |
File Size | 7.26 MB |
Installation Count | 134 |
Current Version | 1.2.2 |
Last Updated | 2021-09-27 |
Publish Date | 2021-06-12 |
Developer | emoreno911 |
[email protected] | |
Payment Type | free |
Extension Website | https://solanatip.io |
Supported Languages | 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'" } |