Colonist.io Result Collector

This Extension reads the results of games played on colonist.io and puts them into a public database viewable at colonist.inpolen.nl

Was ist Colonist.io Result Collector?

Colonist.io Result Collector ist eine Chrome-Erweiterung, die von https://colonist.inpolen.nl entwickelt wurde, und ihr Hauptmerkmal ist "This Extension reads the results of games played on colonist.io and puts them into a public database viewable at colonist.inpolen.nl".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Colonist.io Result Collector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Colonist.io Result Collector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        What’s is better than dominating your friends in Colonist.io? Well of course it’s having an eternal memory of your tyranny  where you've have beaten your friends threefold.

And that’s mostly why this Chrome extensions exist!


(low effort) Ugh, BuT hOw DoEs It WoRk?
All's quiet simple. First we harvest your game end results. Than we send that to our server. And finally we store it in a big database for safe keeping.

You can view your stupendously spectacularly colonising sport game results at:

https://colonist.inpolen.nl                    

Grundlegende Informationen zur Erweiterung

Name Colonist.io Result Collector Colonist.io Result Collector
ID gkhlaeelmbedfdacgpdjhgnjgcmbfjan
Offizielle URL https://chromewebstore.google.com/detail/colonistio-result-collect/gkhlaeelmbedfdacgpdjhgnjgcmbfjan
Beschreibung This Extension reads the results of games played on colonist.io and puts them into a public database viewable at colonist.inpolen.nl
Dateigröße 75.76 KB
Installationsanzahl 50
Aktuelle Version 0.0.1
Letztes Update 2021-07-29
Veröffentlichungsdatum 2021-07-29
Entwickler https://colonist.inpolen.nl
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colonist.io Result Collector",
    "description": "This Extension reads the results of games played on colonist.io and puts them into a public database viewable at colonist.inpolen.nl",
    "version": "0.0.1",
    "permissions": [
        "webRequest"
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "bundle.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/colonist.io\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/colonist.io\/"
            ],
            "js": [
                ".\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}