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 |
| 官方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": [
" | |