Destiny Random Loadout

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

ما هو Destiny Random Loadout؟

Destiny Random Loadout هو إضافة Chrome تم تطويرها بواسطة Eliot Bradshaw، والميزة الرئيسية لها هي "Pulls potential weapons from your bungie gear manager page and presents a random loadout.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Destiny Random Loadout

قم بتنزيل ملفات الامتداد Destiny Random Loadout بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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"
}