Regex Crossword Goodies
Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles
Regex Crossword Goodiesคืออะไร?
Regex Crossword Goodies เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cristi.lupascu และคุณลักษณะหลักของมันคือ "Provides additional functionality on the http://regexcrossword.com/ website: valid clue indicators, load/save puzzles"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Regex Crossword Goodies
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } ] } |