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
官方網址 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"
        }
    }
}