Destiny Random Loadout
Pulls potential weapons from your bungie gear manager page and presents a random loadout.
Destiny Random Loadout란 무엇입니까?
Destiny Random Loadout은(는) Eliot Bradshaw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pulls potential weapons from your bungie gear manager page and presents a random loadout."입니다.
확장 프로그램 스크린샷
Destiny Random Loadout 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Destiny Random Loadout is a simple chrome extension that works from the official Bungie Gear Manager page. It provides an easy way to select weapons randomly from your entire armory, across all characters and within your vault. With the click of a button, you can move pieces of gear to your active character making it easy to equip a random loadout between Crucible matches, or for that extra challenge in any Destiny activity. This is a simple extension originally built for personal use, there are few bells and no whistles, but feel free to suggest bells and/or whistles and let me know when it breaks. Though this extension works through the official Bungie Gear Manager page, it is in no way affiliated with or endorsed by Bungie.
확장 프로그램 기본 정보
이름 | Destiny Random Loadout |
ID | mkcojmpjhgffjdcakmkhfeodaiabmhio |
공식 URL | https://chromewebstore.google.com/detail/destiny-random-loadout/mkcojmpjhgffjdcakmkhfeodaiabmhio |
설명 | Pulls potential weapons from your bungie gear manager page and presents a random loadout. |
파일 크기 | 11.25 KB |
설치 횟수 | 455 |
현재 버전 | 1.1 |
최근 업데이트 | 2016-11-23 |
출시 날짜 | 2016-11-23 |
평점 | 3.71/5 총 7 개의 평점 |
개발자 | Eliot Bradshaw |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Destiny Random Loadout", "version": "1.1", "manifest_version": 2, "description": "Pulls potential weapons from your bungie gear manager page and presents a random loadout.", "icons": { "128": "DRL_icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.bungie.net\/en\/Gear\/Manager\/*" ], "js": [ "destinyRandomLoadout.js" ] } ], "browser_action": { "default_title": "DRL", "default_icon": "DRL_icon_128.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "short_name": "DRL", "author": "Eliot Bradshaw" } |