Apexbot

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

Apexbot là gì?

Apexbot là một tiện ích mở rộng Chrome được phát triển bởi Dev Pajeetson, và tính năng chính của nó là "A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Apexbot

Tải xuống các tệp mở rộng Apexbot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Apexbot Apexbot
ID ojilbjpfcakeofoakcolaomcaefbpphp
URL Chính Thức https://chromewebstore.google.com/detail/apexbot/ojilbjpfcakeofoakcolaomcaefbpphp
Mô tả A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens
Kích Thước Tệp 676 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 2
Cập Nhật Lần Cuối 2023-08-15
Ngày Phát Hành 2023-08-08
Nhà Phát Triển Dev Pajeetson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://apexbot.app
URL Trang Chính Sách Bảo Mật https://www.privacypolicytemplate.net/live.php?token=dpLBhyDF9878JyjHQvsllk23QrpKZ1CV
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}