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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
        ""
    ]
}