Minesolver

An extension to automatically highlight minesweeper tiles

Co je Minesolver?

Minesolver je rozšíření Chrome vyvinuté me, a jeho hlavní funkcí je „An extension to automatically highlight minesweeper tiles“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Minesolver

Stáhněte si soubory rozšíření Minesolver ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Automatically highlights cells based on simple mathematical rules to help you play minesweeper.                    

Základní Informace o Rozšíření

Název Minesolver Minesolver
ID iobegaggjcgmiggimmgocbbenihefagl
Oficiální URL https://chromewebstore.google.com/detail/minesolver/iobegaggjcgmiggimmgocbbenihefagl
Popis An extension to automatically highlight minesweeper tiles
Velikost souboru 10.75 KB
Počet instalací 57
Aktuální Verze 1.0.0
Poslední Aktualizace 2022-10-11
Datum Vydání 2022-10-10
Vývojář me
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Minesolver",
    "description": "An extension to automatically highlight minesweeper tiles",
    "version": "1.0.0",
    "author": "Cristi Macovei",
    "action": {
        "default_popup": "html\/popup.html"
    },
    "permissions": [],
    "host_permissions": [
        "https:\/\/minesweeperonline.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/minesweeperonline.com\/"
            ],
            "js": [
                "js-bundles\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js-bundles\/background.js"
    }
}