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 |
公式URL | 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 |
Eメール | [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" ] } |