Only move
Chrome extension that plays only moves for you on popular chess gaming sites.
Was ist Only move?
Only move ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension that plays only moves for you on popular chess gaming sites.".
Erweiterungsscreenshots
Only move-Erweiterungs-CRX-Datei herunterladen
Laden Sie Only move-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
OnlyMove can save you time in critical online games. I often find myself when premoving, and my opponent makes me check which leads to losing very important seconds. With OnlyMove you simply install the chrome extension and it detects when you can make only move and it makes it for you.
Grundlegende Informationen zur Erweiterung
Name | Only move |
ID | mbgjmmmhonnpfcflohnpogdfafelogkj |
Offizielle URL | https://chromewebstore.google.com/detail/only-move/mbgjmmmhonnpfcflohnpogdfafelogkj |
Beschreibung | Chrome extension that plays only moves for you on popular chess gaming sites. |
Dateigröße | 427 KB |
Installationsanzahl | 2,012 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2020-05-20 |
Veröffentlichungsdatum | 2020-05-20 |
Bewertung | 3.20/5 Insgesamt 5 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Chrome extension that plays only moves for you on popular chess gaming sites.", "version": "1.0.0", "name": "Only move", "manifest_version": 2, "options_page": "options.html", "background": { "persistent": false, "scripts": [ "background.bundle.js" ] }, "permissions": [ "storage", "declarativeContent", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*", "https:\/\/www.chess.com\/*" ], "js": [ "inject.bundle.js", "stockfish.js", "stockfish.asm.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |