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!"입니다.
확장 프로그램 스크린샷
RLG Trade Bumper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" } } } |