Cryptic Crossword Companion

Parse and give hints for clues on cryptic crossword websites.

Wat is Cryptic Crossword Companion?

Cryptic Crossword Companion is een Chrome-extensie ontwikkeld door Niall Murphy, en de belangrijkste functie is "Parse and give hints for clues on cryptic crossword websites.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Cryptic Crossword Companion

Download Cryptic Crossword Companion-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Cryptic Crossword Companion Cryptic Crossword Companion
ID bcnafjlhjnbkehcahdlllkchfbcofgeg
Officiële URL https://chromewebstore.google.com/detail/cryptic-crossword-compani/bcnafjlhjnbkehcahdlllkchfbcofgeg
Beschrijving Parse and give hints for clues on cryptic crossword websites.
Bestandsgrootte 711 KB
Aantal Installaties 50
Huidige Versie 0.1.0
Laatst Bijgewerkt 2022-03-27
Publicatiedatum 2022-03-27
Ontwikkelaar Niall Murphy
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/niallmurphy-ie/Cryptic-Crossword-Companion
Ondersteunde Talen 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": []
        }
    ]
}