Apexbot

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

Что такое Apexbot?

Apexbot - это расширение Chrome, разработанное Dev Pajeetson, и его основная функция - "A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Apexbot

Скачайте файлы расширений 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
Электронная почта [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": [
        ""
    ]
}