Send Axies To Battle

Queue all axieinfinity.com teams for battle in one go

Τι είναι το Send Axies To Battle;

Το Send Axies To Battle είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cryptokkie, και η κύρια λειτουργία του είναι "Queue all axieinfinity.com teams for battle in one go".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Send Axies To Battle

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

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

                        This extension adds an option to the right-click menu of the 'Send teams to battle' - page on axieinfinity.com. When you select that option and click it, all teams visible on the page will be queued for battle.
If there are still some battles left - Reload the page and do it again

Why?
At the moment of writing users have to click several times per team per battle to send axie to battle. This adds up quickly when you have more than 3 teams...

* 2019 jan 29: There are other (better) extensions for this, look for them in the chrome web store

Disclaimer:
- The Extension depends on generated (uglified/obfuscated)-css classes - so anytime these class-names change, the script becomes unusable until the proper class-names have been set again.
- I made this script because the process of sending all of my axies to battle literally hurts my arm
- I am not a member of the axie team

Remember: This is just a temporary solution until the axie devteam implements similar functionality on the website. When the time comes they have done so, we can all think back of this time and smile. How silly we were...

Enjoy!

Find me @Cryptokkie on twitter and discord 

Peace & Love

-------------------------------
note: The extension can only send teams to battle that are shown on the screen, when you have more than 50 teams and want to send all the teams at once, you have to expand the list first so it shows all the teams including the 51st, 52nd etc
-------------------------------

1.03 - 25 feb 2019 Forgot to check some other css classes, fixes and everything works now!

1.02 - 25 feb 2019 The css classname for teams changed, adjusted in source.

1.01 Fixed a bug that prevented the extension from appearing in the context-menu when right clicked                    

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

Όνομα Send Axies To Battle Send Axies To Battle
ID gaajbnliebblkhcplhllljjbhdlccfgd
Επίσημο URL https://chromewebstore.google.com/detail/send-axies-to-battle/gaajbnliebblkhcplhllljjbhdlccfgd
Περιγραφή Queue all axieinfinity.com teams for battle in one go
Μέγεθος Αρχείου 31.46 KB
Αριθμός Εγκαταστάσεων 230
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2019-02-25
Ημερομηνία Δημοσίευσης 2019-02-25
Προγραμματιστής Cryptokkie
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Send Axies To Battle",
    "short_name": "SendAxiesToBattle",
    "description": "Queue all axieinfinity.com teams for battle in one go",
    "author": "Cryptokkie",
    "version": "1.0.3",
    "icons": {
        "16": "icons\/lizzy16x16.png",
        "48": "icons\/lizzy48x48.png",
        "128": "icons\/lizzy128x128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/axieinfinity.com\/*"
            ],
            "permissions": [
                "https:\/\/axieinfinity.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "manifest_version": 2
}