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
公式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
Eメール [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'"
}