Roblox Trade Bot Defender
Automatically declines trades from bots
Roblox Trade Bot Defender क्या है?
Roblox Trade Bot Defender Billabob द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically declines trades from bots"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Roblox Trade Bot Defender एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |