Lichess Opponent Form
This extension shows live performance, legend and last 8 games of your lichess.org game opponents.
Was ist Lichess Opponent Form?
Lichess Opponent Form ist eine Chrome-Erweiterung, die von Dmitry Y entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows live performance, legend and last 8 games of your lichess.org game opponents.".
Erweiterungsscreenshots
Lichess Opponent Form-Erweiterungs-CRX-Datei herunterladen
Laden Sie Lichess Opponent Form-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
This extension shows live performance, legend and last 8 games of your lichess.org game opponent. The information is presented in the current Chrome tab without any time and effort-consuming redirections. Small popup window will present average performance and a list of recent games of your opponent, including their opponents' names and ratings, pieces colors, game results and the rating changes. The information is clickable and navigates to the recent games and players' profiles. * May be useful to make a preliminary opinion about your opponent's strength and current form in fast blitz games. * Helps to recognize and avoid users with inadequate chess rating. * Is handy to look into the current situation and events in Arena tournaments, look for winning series. * Entertains with useful statistics while waiting for the opponent's move. More features to come.
Grundlegende Informationen zur Erweiterung
Name | Lichess Opponent Form |
ID | lipplpkgbnhdfdchoibgafjdblpjdkpi |
Offizielle URL | https://chromewebstore.google.com/detail/lichess-opponent-form/lipplpkgbnhdfdchoibgafjdblpjdkpi |
Beschreibung | This extension shows live performance, legend and last 8 games of your lichess.org game opponents. |
Dateigröße | 16.89 KB |
Installationsanzahl | 251 |
Aktuelle Version | 0.2.6 |
Letztes Update | 2022-04-12 |
Veröffentlichungsdatum | 2021-08-16 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Dmitry Y |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lichess Opponent Form", "version": "0.2.6", "manifest_version": 3, "host_permissions": [ "http:\/\/localhost:8080\/" ], "description": "This extension shows live performance, legend and last 8 games of your lichess.org game opponents.", "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_title": "Lichess Opponent Form", "default_popup": "popup.html" }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |