Minesolver
An extension to automatically highlight minesweeper tiles
Co to jest Minesolver?
Minesolver to rozszerzenie Chrome opracowane przez me, a jego główną funkcją jest „An extension to automatically highlight minesweeper tiles”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Minesolver
Pobierz pliki rozszerzeń Minesolver w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        Automatically highlights cells based on simple mathematical rules to help you play minesweeper.                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | iobegaggjcgmiggimmgocbbenihefagl | 
| Oficjalny URL | https://chromewebstore.google.com/detail/minesolver/iobegaggjcgmiggimmgocbbenihefagl | 
| Opis | An extension to automatically highlight minesweeper tiles | 
| Rozmiar pliku | 10.75 KB | 
| Liczba instalacji | 57 | 
| Aktualna Wersja | 1.0.0 | 
| Ostatnia Aktualizacja | 2022-10-11 | 
| Data Publikacji | 2022-10-10 | 
| Deweloper | me | 
| [email protected] | |
| Typ Płatności | free | 
| Obsługiwane Języki | 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"
    }
}  |  |