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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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
Επίσημο 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"
}