Roblox Trade Bot Defender
Automatically declines trades from bots
什麼是Roblox Trade Bot Defender?
Roblox Trade Bot Defender是由Billabob開發的Chrome擴展程式,該擴展的主要功能是“Automatically declines trades from bots”。
擴展截圖
下載Roblox Trade Bot Defender擴展crx文件
下載Roblox Trade Bot Defender擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A Roblox extension that automatically declines trades from known trade botters. Your inbound trade tab will be free of awful botted trades for the first time in years, without you having to restrict to followers, discouraging traders. Includes a public, regularly maintained, extensive up-to-date list of 6000+ bots. Join our Discord server! https://discord.gg/qJpQdkW Support us on Patreon: https://www.patreon.com/TradeBotDefender/posts The source code of the current version and all past versions is available and open sourced on GitHub: https://github.com/codetariat/bot-defender
擴展基本資訊
名稱 | |
ID | ndamkiaclbnglafnkemaomabalakdmmm |
官方網址 | https://chromewebstore.google.com/detail/roblox-trade-bot-defender/ndamkiaclbnglafnkemaomabalakdmmm |
簡介 | Automatically declines trades from bots |
檔案大小 | 143 KB |
安裝次數 | 1,486 |
目前版本 | 0.0.0.26 |
更新時間 | 2022-07-27 |
上架時間 | 2020-07-31 |
評分 | 3.75/5 共 55 次評分 |
開發者 | Billabob |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Roblox Trade Bot Defender", "description": "Automatically declines trades from bots", "version": "0.0.0.26", "background": { "scripts": [ "main.js" ], "persistent": true }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.roblox.com\/*" ], "js": [ "content\/botIcon.js" ] } ], "icons": { "16": "content\/icon16.png", "48": "content\/icon48.png", "128": "content\/icon128.png", "512": "content\/icon512.png" }, "permissions": [ "https:\/\/trades.roblox.com\/v1\/trades\/*", "https:\/\/gist.githubusercontent.com\/*", "https:\/\/www.patreon.com\/TradeBotDefender", "storage" ], "browser_action": { "default_icon": "content\/icon512.png", "default_popup": "pages\/popup.html" }, "web_accessible_resources": [ "*.png" ] } |