Only move

Chrome extension that plays only moves for you on popular chess gaming sites.

Qu'est-ce que Only move ?

Only move est une extension Chrome développée par Unknown, et sa fonction principale est "Chrome extension that plays only moves for you on popular chess gaming sites.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Only move

Téléchargez les fichiers d'extension Only move au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Only move Only move
ID mbgjmmmhonnpfcflohnpogdfafelogkj
URL Officiel https://chromewebstore.google.com/detail/only-move/mbgjmmmhonnpfcflohnpogdfafelogkj
Description Chrome extension that plays only moves for you on popular chess gaming sites.
Taille du Fichier 427 KB
Nombre d'Installations 2,012
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-05-20
Date de Publication 2020-05-20
Évaluation 3.20/5 Total 5 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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'"
}