OGame Tracker
This extension tracks information of the player and represents these graphically.
Was ist OGame Tracker?
OGame Tracker ist eine Chrome-Erweiterung, die von Wonkydonky entwickelt wurde, und ihr Hauptmerkmal ist "This extension tracks information of the player and represents these graphically.".
Erweiterungsscreenshots
OGame Tracker-Erweiterungs-CRX-Datei herunterladen
Laden Sie OGame Tracker-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
Tracks information about the player. Currently, results of expeditions, combats and debris field harvests are tracked. The data will only be stored locally.
Grundlegende Informationen zur Erweiterung
Name | OGame Tracker |
ID | gcebldjabjlagnnnjfodjgiddnonehnd |
Offizielle URL | https://chromewebstore.google.com/detail/ogame-tracker/gcebldjabjlagnnnjfodjgiddnonehnd |
Beschreibung | This extension tracks information of the player and represents these graphically. |
Dateigröße | 39.69 MB |
Installationsanzahl | 6,465 |
Aktuelle Version | 2024.2.23.19064 |
Letztes Update | 2024-02-23 |
Veröffentlichungsdatum | 2021-08-27 |
Bewertung | 5.00/5 Insgesamt 15 Bewertungen |
Entwickler | Wonkydonky |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://discord.gg/MZE9FrCwRj |
Unterstützte Sprachen | de,en,fr,da,es,hr,it,hu,pl,pt-BR,pt-PT,sl,cs,el,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OGame Tracker", "description": "__MSG_appDesc__", "manifest_version": 3, "default_locale": "de", "version": "2024.2.23.19064", "icons": { "128": "icon128.png" }, "permissions": [ "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/*.ogame.gameforge.com\/*" ], "web_accessible_resources": [ { "resources": [ "img\/*", "views\/*", "mdi\/*", "ogti\/*" ], "matches": [ "https:\/\/*.ogame.gameforge.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "js": [ "content-scripts\/add-menu-item.js" ], "css": [ "content-scripts\/add-menu-item.css" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_end", "js": [ "content-scripts\/add-notification-iframe.js" ], "css": [ "content-scripts\/add-notification-iframe.css" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "all_frames": true, "js": [ "content-scripts\/empire-tracking.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_end", "js": [ "content-scripts\/generate-color-css-variables.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "css": [ "mdi\/style.chrome.css", "ogti\/style.chrome.css" ], "js": [ "content-scripts\/icons-everywhere.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "js": [ "content-scripts\/keep-service-worker-alive.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_end", "js": [ "content-scripts\/message-tracking.js" ], "css": [ "content-scripts\/message-tracking.css" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "js": [ "content-scripts\/universe-and-account-tracking.js" ] } ], "background": { "service_worker": "service-worker.js" } } |