Destiny Random Loadout

Pulls potential weapons from your bungie gear manager page and presents a random loadout.

Destiny Random Loadout là gì?

Destiny Random Loadout là một tiện ích mở rộng Chrome được phát triển bởi Eliot Bradshaw, và tính năng chính của nó là "Pulls potential weapons from your bungie gear manager page and presents a random loadout.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Destiny Random Loadout

Tải xuống các tệp mở rộng Destiny Random Loadout dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Destiny Random Loadout Destiny Random Loadout
ID mkcojmpjhgffjdcakmkhfeodaiabmhio
URL Chính Thức https://chromewebstore.google.com/detail/destiny-random-loadout/mkcojmpjhgffjdcakmkhfeodaiabmhio
Mô tả Pulls potential weapons from your bungie gear manager page and presents a random loadout.
Kích Thước Tệp 11.25 KB
Số Lần Cài Đặt 455
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-11-23
Ngày Phát Hành 2016-11-23
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Eliot Bradshaw
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}