Solanatip
A chrome extension to tip your favorite tweets with $SOL
ما هو Solanatip؟
Solanatip هو إضافة Chrome تم تطويرها بواسطة emoreno911، والميزة الرئيسية لها هي "A chrome extension to tip your favorite tweets with $SOL".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Solanatip
قم بتنزيل ملفات الامتداد Solanatip بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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'" } |