Regex Crossword Goodies
Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles
Regex Crossword Goodies là gì?
Regex Crossword Goodies là một tiện ích mở rộng Chrome được phát triển bởi cristi.lupascu, và tính năng chính của nó là "Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Regex Crossword Goodies
Tải xuống các tệp mở rộng Regex Crossword Goodies dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Regex Crossword Goodies |
ID | cfcmapoondlingnafablpgekhjiedckl |
URL Chính Thức | https://chromewebstore.google.com/detail/regex-crossword-goodies/cfcmapoondlingnafablpgekhjiedckl |
Mô tả | Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles |
Kích Thước Tệp | 39.54 KB |
Số Lần Cài Đặt | 136 |
Phiên Bản Hiện Tại | 0.1.8 |
Cập Nhật Lần Cuối | 2016-09-06 |
Ngày Phát Hành | 2016-09-06 |
Đánh Giá | 3.25/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | cristi.lupascu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/clupasq/regex-crossword-goodies |
URL Trang Trợ Giúp | https://github.com/clupasq/regex-crossword-goodies/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |