Minesolver
An extension to automatically highlight minesweeper tiles
What is Minesolver?
Minesolver is a Chrome extension developed by me, and its main feature is "An extension to automatically highlight minesweeper tiles".
Extension Screenshots
Download Minesolver Extension CRX File
Download Minesolver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Automatically highlights cells based on simple mathematical rules to help you play minesweeper.
Extension Basic Information
Name | Minesolver |
ID | iobegaggjcgmiggimmgocbbenihefagl |
Official URL | https://chromewebstore.google.com/detail/minesolver/iobegaggjcgmiggimmgocbbenihefagl |
Description | An extension to automatically highlight minesweeper tiles |
File Size | 10.75 KB |
Installation Count | 57 |
Current Version | 1.0.0 |
Last Updated | 2022-10-11 |
Publish Date | 2022-10-10 |
Developer | me |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |