Roblox Trade Bot Defender

Automatically declines trades from bots

Roblox Trade Bot Defender là gì?

Roblox Trade Bot Defender là một tiện ích mở rộng Chrome được phát triển bởi Billabob, và tính năng chính của nó là "Automatically declines trades from bots".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Roblox Trade Bot Defender

Tải xuống các tệp mở rộng Roblox Trade Bot Defender dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Roblox Trade Bot Defender Roblox Trade Bot Defender
ID ndamkiaclbnglafnkemaomabalakdmmm
URL Chính Thức https://chromewebstore.google.com/detail/roblox-trade-bot-defender/ndamkiaclbnglafnkemaomabalakdmmm
Mô tả Automatically declines trades from bots
Kích Thước Tệp 143 KB
Số Lần Cài Đặt 1,486
Phiên Bản Hiện Tại 0.0.0.26
Cập Nhật Lần Cuối 2022-07-27
Ngày Phát Hành 2020-07-31
Đánh Giá 3.75/5 Tổng số 55 Đánh Giá
Nhà Phát Triển Billabob
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}