Apexbot

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

What is Apexbot?

Apexbot is a Chrome extension developed by Dev Pajeetson, and its main feature is "A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens".

Extension Screenshots

screenshot
screenshot

Download Apexbot Extension CRX File

Download Apexbot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Apexbot Apexbot
ID ojilbjpfcakeofoakcolaomcaefbpphp
Official URL https://chromewebstore.google.com/detail/apexbot/ojilbjpfcakeofoakcolaomcaefbpphp
Description A scraper that scrapes twitter for contract addresses and lets you use uniswap to swap their tokens
File Size 676 KB
Installation Count 25
Current Version 2
Last Updated 2023-08-15
Publish Date 2023-08-08
Developer Dev Pajeetson
Email [email protected]
Payment Type free
Extension Website https://apexbot.app
Privacy Policy Page URL https://www.privacypolicytemplate.net/live.php?token=dpLBhyDF9878JyjHQvsllk23QrpKZ1CV
Supported Languages 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": [
        ""
    ]
}