Cryptic Crossword Companion

Parse and give hints for clues on cryptic crossword websites.

Cryptic Crossword Companion란 무엇입니까?

Cryptic Crossword Companion은(는) Niall Murphy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Parse and give hints for clues on cryptic crossword websites."입니다.

확장 프로그램 스크린샷

screenshot

Cryptic Crossword Companion 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Cryptic Crossword Companion.

I made this extenstion to help me improve at cryptic crosswords, and to reinforce some web development skills I've been learning. If people find it useful, I will add more websites. Suggestions and collaboration welcome.

Features:

 - Highlight crossword indicators such as anagrams, hidden words, homophones, etc.
 - Provide abbreviations and synonyms.
 - Persistent notes per clue stored in the browser.

Sites supported:
https://www.theguardian.com/crosswords/

Github:
https://github.com/niallmurphy-ie/Cryptic-Crossword-Companion

Enjoy.                    

확장 프로그램 기본 정보

이름 Cryptic Crossword Companion Cryptic Crossword Companion
ID bcnafjlhjnbkehcahdlllkchfbcofgeg
공식 URL https://chromewebstore.google.com/detail/cryptic-crossword-compani/bcnafjlhjnbkehcahdlllkchfbcofgeg
설명 Parse and give hints for clues on cryptic crossword websites.
파일 크기 711 KB
설치 횟수 50
현재 버전 0.1.0
최근 업데이트 2022-03-27
출시 날짜 2022-03-27
개발자 Niall Murphy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/niallmurphy-ie/Cryptic-Crossword-Companion
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cryptic Crossword Companion",
    "description": "Parse and give hints for clues on cryptic crossword websites.",
    "version": "0.1.0",
    "manifest_version": 3,
    "icons": {
        "16": ".\/obj-16x16.png",
        "32": ".\/obj-32x32.png",
        "48": ".\/obj-48x48.png",
        "128": ".\/obj-128x128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/www.theguardian.com\/crosswords\/*\/*"
    ],
    "permissions": [
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject_script.js",
                "foreground.bundle.js",
                "popup.bundle.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}