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!
拡張機能の基本情報
名前 | Regex Crossword Goodies |
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 |
Eメール | [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" } ] } |