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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Apexbot
قم بتنزيل ملفات الامتداد Apexbot بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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. معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة سياسة الخصوصية | 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": [
" | |