Regex Crossword Goodies
Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles
Co je Regex Crossword Goodies?
Regex Crossword Goodies je rozšíření Chrome vyvinuté cristi.lupascu, a jeho hlavní funkcí je „Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Regex Crossword Goodies
Stáhněte si soubory rozšíření Regex Crossword Goodies 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í
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!
Základní Informace o Rozšíření
Název | Regex Crossword Goodies |
ID | cfcmapoondlingnafablpgekhjiedckl |
Oficiální URL | https://chromewebstore.google.com/detail/regex-crossword-goodies/cfcmapoondlingnafablpgekhjiedckl |
Popis | Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles |
Velikost souboru | 39.54 KB |
Počet instalací | 136 |
Aktuální Verze | 0.1.8 |
Poslední Aktualizace | 2016-09-06 |
Datum Vydání | 2016-09-06 |
Hodnocení | 3.25/5 Celkem 4 Hodnocení |
Vývojář | cristi.lupascu |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/clupasq/regex-crossword-goodies |
URL Stránky Nápovědy | https://github.com/clupasq/regex-crossword-goodies/issues |
Podporované Jazyky | 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" } ] } |