SimpleMMO Collection Manager

Helps sort which items you have already collected.

Τι είναι το SimpleMMO Collection Manager;

Το SimpleMMO Collection Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον julysfire, και η κύρια λειτουργία του είναι "Helps sort which items you have already collected.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SimpleMMO Collection Manager

Λήψη αρχείων επέκτασης SimpleMMO Collection Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension stores a list of all the collectibles, equipment, sprites, avatars and backgrounds that you have added to your collection and when you go to your inventory, will display a green checkmark next to the item name if you have collected that item already.  If you have not collected the item, it will display a red exclamation mark next to the item name.  Items that are bought from the store that you cannot collect will show a yellow $ icon to denote that the item could/should be quick sold.


- **Important for first time setup**: Any time you go to your collections page (items and collectibles), the extension will read the page for item names and add them to the internal storage for which items you have.  In this regard, I recommend going through all the pages on your collection tab (items and collectibles) after installing the extension to generate a list of what you already have.

- This extension works on any page that shows your inventory (i.e.  Market, Dumping Grounds, and of course inventory itself)
- Items you add to your collection will automatically be updated.
- There is a default list of items that are bought from the store.  If the extension ever finds an item that is store bought and can't be collected, it will add it to it's internal list and you won't see
- No icons will be displayed for items that have no collection status (i.e. materials, potions, food)

- In the popup (clicking on the extension icon on taskbar or in extension dropdown), you can set a quicksell threshold limit for all items.  Setting this will make any item that quick sells more then the entered amount show a yellow $ icon instead of the green/red icon.
- In the same popup, you can import and export your current lists.  Exported lists save as .csv files so you can easily use this in Excel.  For importing lists, you can select the .csv that was created by extension or you can make it yourself (start with "ItemList" in A1 and then each A row after that, add an item name).                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SimpleMMO Collection Manager SimpleMMO Collection Manager
ID ahbjmljpdknlfdgeaffcpdjeadofhplp
Επίσημο URL https://chromewebstore.google.com/detail/simplemmo-collection-mana/ahbjmljpdknlfdgeaffcpdjeadofhplp
Περιγραφή Helps sort which items you have already collected.
Μέγεθος Αρχείου 47.46 KB
Αριθμός Εγκαταστάσεων 100
Τρέχουσα Έκδοση 1.4.3
Τελευταία Ενημέρωση 2021-08-30
Ημερομηνία Δημοσίευσης 2021-08-27
Αξιολόγηση 4.50/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής julysfire
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/julysfire/SimpleMMOCollectionManager
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/julysfire/SimpleMMOCollectionManager
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SimpleMMO Collection Manager",
    "description": "Helps sort which items you have already collected.",
    "version": "1.4.3",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "*:\/\/*.web.simple-mmo.com\/*"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.web.simple-mmo.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "imgs\/checkmark.png",
        "imgs\/newItem.png",
        "imgs\/quickSell.png"
    ],
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "browser_action": {
        "default_icon": "imgs\/icon128.png",
        "default_popup": "src\/popup.html",
        "default_title": "SMMO Collection Manager"
    }
}