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开发的Chrome扩展程序,该扩展的主要功能是“Automatically bump your Rocket League Garage trades, and sit back while the trades roll in!”。

扩展截图

screenshot

下载RLG Trade Bumper扩展crx文件

下载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.                    

扩展基本信息

名称 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"
        }
    }
}