RLG Trade Bumper

Automatically bump your Rocket League Garage trades, and sit back while the trades roll in!

RLG Trade Bumper क्या है?

RLG Trade Bumper http://anga.blue द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically bump your Rocket League Garage trades, and sit back while the trades roll in!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RLG Trade Bumper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Rocket League Garage Trade Bumper will automatically bump your trade offers on https://rocket-league.com, allowing you to focus on trading rather than managing your trades.

Features:
 • Adjustable (and randomized) trade bumping delay, from 15 minutes to an hour.
 • Simple + easy to use.  Add this extension and open the "My Trades" page on Rocket League Garage to start automatically bumping.
 • Bump Logs.  See when your trades were last bumped by clicking on the RLG Trade Bumper icon.
 • Quick on/off switch.  Turn the bumper on or off whenever you like.

Rocket League Garage Trade Bumper is fully open source and available on GitHub at https://github.com/AngaBlue/rlg-trade-bumper.

Note: Use this extension at your own risk.  RLG Trade Bumper is in no way liable if action is taken against you for using this extension.                    

एक्सटेंशन की मूल जानकारी

नाम RLG Trade Bumper RLG Trade Bumper
ID hochdggaanpfbpoigfkmcnkekghmijbk
आधिकारिक URL https://chrome.google.com/webstore/detail/rlg-trade-bumper/hochdggaanpfbpoigfkmcnkekghmijbk
विवरण Automatically bump your Rocket League Garage trades, and sit back while the trades roll in!
फ़ाइल का आकार 170 KB
स्थापना संख्या 647
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2022-04-23
प्रकाशन तिथि 2020-10-06
रेटिंग 5.00/5 कुल 12 रेटिंग्स
डेवलपर http://anga.blue
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://anga.blue/products/rocket-league-garage-trade-bumper
सहायता पृष्ठ URL https://anga.blue/contact
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RLG Trade Bumper",
    "version": "0.1.2",
    "author": "AngaBlue",
    "description": "Automatically bump your Rocket League Garage trades, and sit back while the trades roll in!",
    "homepage_url": "https:\/\/anga.blue",
    "icons": {
        "16": "assets\/icon-16x16.png",
        "48": "assets\/icon-48x48.png",
        "128": "assets\/icon-128x128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "*:\/\/*.rocket-league.com\/*",
        "storage"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_title": "RLG Trade Bumper",
        "default_icon": "assets\/icon-48x48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "trade.js"
            ],
            "matches": [
                "*:\/\/*.rocket-league.com\/*"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "53.0"
        }
    }
}