Minesolver
An extension to automatically highlight minesweeper tiles
什么是Minesolver?
Minesolver是由me开发的Chrome扩展程序,该扩展的主要功能是“An extension to automatically highlight minesweeper tiles”。
扩展截图
下载Minesolver扩展crx文件
下载Minesolver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically highlights cells based on simple mathematical rules to help you play minesweeper. 扩展基本信息
| 名称 | |
| ID | iobegaggjcgmiggimmgocbbenihefagl |
| 官方URL | https://chromewebstore.google.com/detail/minesolver/iobegaggjcgmiggimmgocbbenihefagl |
| 简介 | An extension to automatically highlight minesweeper tiles |
| 文件大小 | 10.75 KB |
| 安装次数 | 57 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2022-10-11 |
| 上架时间 | 2022-10-10 |
| 开发者 | me |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
}
} | |