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"입니다.

확장 프로그램 스크린샷

screenshot

Regex Crossword Goodies 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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