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”。
擴展截圖
下載Apexbot擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | ojilbjpfcakeofoakcolaomcaefbpphp |
| 官方網址 | 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": [
" | |