RLG Trade Bumper
Automatically bump your Rocket League Garage trades, and sit back while the trades roll in!
Τι είναι το RLG Trade Bumper;
Το RLG Trade Bumper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://anga.blue, και η κύρια λειτουργία του είναι "Automatically bump your Rocket League Garage trades, and sit back while the trades roll in!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης RLG Trade Bumper
Λήψη αρχείων επέκτασης RLG Trade Bumper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" } } } |