Regex Crossword Goodies
Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles
什么是Regex Crossword Goodies?
Regex Crossword Goodies是由cristi.lupascu开发的Chrome扩展程序,该扩展的主要功能是“Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles”。
扩展截图
下载Regex Crossword Goodies扩展crx文件
下载Regex Crossword Goodies扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
After installing this extension, go to http://regexcrossword.com/ and enjoy the extra functionality:
* Load/Save Puzzles - you can copy/paste a textual representation of the current solution in order to resume it later.
* Regex Validation - as soon as you complete a row/column, the corresponding regex clues are automatically validated and their status is shown in red or green. This also works for the newly introduced hexagonal puzzles.
* Regex Explanation - syntax highlighting and link to the https://regexper.com website.
* Player Puzzle List Filter - (only for authenticated users) - allows you to filter toggle between showing the entire puzzle list, or just the unsolved unambiguous puzzles available.
The source code of this extension is available at: https://github.com/wolfascu/regex-crossword-goodies
Have fun playing this awesome game! 扩展基本信息
| 名称 | |
| ID | cfcmapoondlingnafablpgekhjiedckl |
| 官方URL | https://chromewebstore.google.com/detail/regex-crossword-goodies/cfcmapoondlingnafablpgekhjiedckl |
| 简介 | Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles |
| 文件大小 | 39.54 KB |
| 安装次数 | 136 |
| 当前版本 | 0.1.8 |
| 更新时间 | 2016-09-06 |
| 上架时间 | 2016-09-06 |
| 评分 | 3.25/5 共4次评分 |
| 开发者 | cristi.lupascu |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/clupasq/regex-crossword-goodies |
| 帮助页面URL | https://github.com/clupasq/regex-crossword-goodies/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Regex Crossword Goodies",
"short_name": "RegexGoodies",
"version": "0.1.8",
"description": "Provides additional functionality on the http:\/\/regexcrossword.com\/ website: valid clue indicators, load\/save puzzles",
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"author": "Cristian Lupa\u0219cu",
"homepage_url": "https:\/\/github.com\/wolfascu\/regex-crossword-goodies\/",
"permissions": [
"*:\/\/regexcrossword.com\/*"
],
"web_accessible_resources": [
"regex-crossword.js",
"regex-colorizer.js"
],
"content_scripts": [
{
"matches": [
"*:\/\/regexcrossword.com\/**"
],
"js": [
"main.js"
],
"run_at": "document_end"
}
]
} | |