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”。

擴展截圖

screenshot
screenshot

下載Solanatip擴展crx文件

下載Solanatip擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Solanatip Solanatip
ID mclnpalkmbiijhhflmfimabcplbleiek
官方網址 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'"
}