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