LogDog - Logger for Dominion Online

Keep track of your Dominion.Games logs.

Τι είναι το LogDog - Logger for Dominion Online;

Το LogDog - Logger for Dominion Online είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον logdogdeveloper, και η κύρια λειτουργία του είναι "Keep track of your Dominion.Games logs.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης LogDog - Logger for Dominion Online

Λήψη αρχείων επέκτασης LogDog - Logger for Dominion Online σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        LogDog is a Chrome extension that will keep track of your games on Dominion.Games. Everytime you play a game of Dominion, LogDog will constantly keep track of the Log for you and store it locally in Chrome (the logs are not synched between computers! You can move your logs between computers using the backup functions from the options page).

Now you can come back to your logs anytime in a manner of seconds and save them on your computer to do some fancy analysis yourself or copy them for use in other apps like Windominion.com.

Just click on the LogDog logo next to your adress bar on the right to get access to all your stored logs, filter for players and dates as well as rerun a match against a bot or another player by reloading the kingdom as a new game.

Go to "More Options" or right-click on the extension and select "options" to Access the options page. There you can again filter for certain players or dates, backup and restore your logs and also view all your logs as in the popup, and change the behaviour of LogDog.

The source code for log dog is hosted on github (https://www.github.com/michaelgoetze/LogDog                    

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

Όνομα LogDog - Logger for Dominion Online LogDog - Logger for Dominion Online
ID ghcfiomipllgpdpifodecegjoljheinf
Επίσημο URL https://chromewebstore.google.com/detail/logdog-logger-for-dominio/ghcfiomipllgpdpifodecegjoljheinf
Περιγραφή Keep track of your Dominion.Games logs.
Μέγεθος Αρχείου 37.5 MB
Αριθμός Εγκαταστάσεων 58
Τρέχουσα Έκδοση 0.0.14
Τελευταία Ενημέρωση 2020-06-23
Ημερομηνία Δημοσίευσης 2020-06-22
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής logdogdeveloper
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/michaelgoetze/LogDog
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/michaelgoetze/LogDog/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LogDog - Logger for Dominion Online",
    "version": "0.0.14",
    "manifest_version": 2,
    "description": "Keep track of your Dominion.Games logs.",
    "page_action": {
        "default_icon": {
            "32": "images\/LogDog32.png",
            "64": "images\/LogDog64.png",
            "256": "images\/LogDog256.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "downloads",
        "storage",
        "unlimitedStorage",
        "*:\/\/dominion.games\/*"
    ],
    "icons": {
        "32": "images\/LogDog32.png",
        "128": "images\/icon.png",
        "256": "images\/LogDog256.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/dominion.games\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}