Aavegotchi Extension

Pet and view your Aavegotchis no matter where you are on the web.

Τι είναι το Aavegotchi Extension;

Το Aavegotchi Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον calebgcbrown, και η κύρια λειτουργία του είναι "Pet and view your Aavegotchis no matter where you are on the web.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Aavegotchi Extension

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

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

                        This simple Chrome extension utilises Metamask to view and pet your Aavegotchis.

You will be able to keep track of and be notified when your fren needs their next interaction. Then, you can Pet them individually or all at once from any webpage connected to the Matic Network.

Requirements:
- Metamask (Connected to Matic network)
- Atleast one Aavegotchi assigned to your address

If your Aavegotchi's are not showing, either connect your current page to Metamask or go on to a webpage that already is connected to Metamask and refresh the page. Your Aavegotchi friends will then be able to follow you throughout your journeys on the web!

If you like this project, feel free to tip the creator at:
0x7121CBdA61e025EB6639Cd797F63aad30F270680                    

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

Όνομα Aavegotchi Extension Aavegotchi Extension
ID ibggmlahcckfbcghmbnbdmkmolmaejfc
Επίσημο URL https://chromewebstore.google.com/detail/aavegotchi-extension/ibggmlahcckfbcghmbnbdmkmolmaejfc
Περιγραφή Pet and view your Aavegotchis no matter where you are on the web.
Μέγεθος Αρχείου 713 KB
Αριθμός Εγκαταστάσεων 1,393
Τρέχουσα Έκδοση 0.0.0.2
Τελευταία Ενημέρωση 2021-04-02
Ημερομηνία Δημοσίευσης 2021-03-22
Αξιολόγηση 3.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής calebgcbrown
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://docs.google.com/document/d/1gTo61bV_53pNObyXalbKDXgac1iOZDNHvHYjlBpvwAA/edit?usp=sharing
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.0.2",
    "name": "Aavegotchi Extension",
    "short_name": "Aavegotchi",
    "description": "Pet and view your Aavegotchis no matter where you are on the web.",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/img\/icon-16x16.png",
        "48": "assets\/img\/icon-48x48.png",
        "128": "assets\/img\/icon-128x128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src ws:\/\/localhost:*\/",
    "web_accessible_resources": [
        "assets\/img\/*"
    ]
}