Apexbot

A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens

Apexbotとは何ですか?

ApexbotはDev Pajeetsonによって開発されたChromeの拡張機能で、その主な機能は「A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens」です。

拡張機能のスクリーンショット

screenshot
screenshot

Apexbot拡張機能のCRXファイルをダウンロード

Apexbot拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The extension parses addresses that show up on your twitter feed and turns them into clickable links. These links can link to Uniswap which allows you to connect your Metamask wallet and swap your coins.                    

拡張機能の基本情報

名前 Apexbot Apexbot
ID ojilbjpfcakeofoakcolaomcaefbpphp
公式URL https://chromewebstore.google.com/detail/apexbot/ojilbjpfcakeofoakcolaomcaefbpphp
説明 A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens
ファイルサイズ 676 KB
インストール数 25
現在のバージョン 2
最終更新日 2023-08-15
公開日 2023-08-08
開発者 Dev Pajeetson
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://apexbot.app
プライバシーポリシーページのURL https://www.privacypolicytemplate.net/live.php?token=dpLBhyDF9878JyjHQvsllk23QrpKZ1CV
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Apexbot",
    "manifest_version": 3,
    "version": "2",
    "description": "A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "declarativeNetRequestFeedback",
        "browsingData"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules\/rules.json"
            }
        ]
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ],
    "host_permissions": [
        ""
    ]
}