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.”。

擴展截圖

screenshot

下載Destiny Random Loadout擴展crx文件

下載Destiny Random Loadout擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Destiny Random Loadout
ID mkcojmpjhgffjdcakmkhfeodaiabmhio
官方網址 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"
}