Solanatip
A chrome extension to tip your favorite tweets with $SOL
Solanatip란 무엇입니까?
Solanatip은(는) emoreno911에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to tip your favorite tweets with $SOL"입니다.
확장 프로그램 스크린샷
Solanatip 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | mclnpalkmbiijhhflmfimabcplbleiek |
공식 URL | https://chromewebstore.google.com/detail/solanatip/mclnpalkmbiijhhflmfimabcplbleiek |
설명 | A chrome extension to tip your favorite tweets with $SOL |
파일 크기 | 7.26 MB |
설치 횟수 | 134 |
현재 버전 | 1.2.2 |
최근 업데이트 | 2021-09-27 |
출시 날짜 | 2021-06-12 |
개발자 | emoreno911 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://solanatip.io |
지원되는 언어 | 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'" } |