Roblox Trade Bot Defender

Automatically declines trades from bots

Roblox Trade Bot Defender란 무엇입니까?

Roblox Trade Bot Defender은(는) Billabob에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically declines trades from bots"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Roblox Trade Bot Defender 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Roblox Trade Bot Defender Roblox Trade 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
이메일 [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"
    ]
}