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" } ] } |