Cryptic Crossword Companion

Parse and give hints for clues on cryptic crossword websites.

Cryptic Crossword Companionคืออะไร?

Cryptic Crossword Companion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Niall Murphy และคุณลักษณะหลักของมันคือ "Parse and give hints for clues on cryptic crossword websites."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cryptic Crossword Companion

ดาวน์โหลดไฟล์ส่วนขยาย Cryptic Crossword Companion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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