Cryptic Crossword Companion

Parse and give hints for clues on cryptic crossword websites.

Qu'est-ce que Cryptic Crossword Companion ?

Cryptic Crossword Companion est une extension Chrome développée par Niall Murphy, et sa fonction principale est "Parse and give hints for clues on cryptic crossword websites.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Cryptic Crossword Companion

Téléchargez les fichiers d'extension Cryptic Crossword Companion au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Cryptic Crossword Companion Cryptic Crossword Companion
ID bcnafjlhjnbkehcahdlllkchfbcofgeg
URL Officiel https://chromewebstore.google.com/detail/cryptic-crossword-compani/bcnafjlhjnbkehcahdlllkchfbcofgeg
Description Parse and give hints for clues on cryptic crossword websites.
Taille du Fichier 711 KB
Nombre d'Installations 50
Version Actuelle 0.1.0
Dernière Mise à Jour 2022-03-27
Date de Publication 2022-03-27
Développeur Niall Murphy
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/niallmurphy-ie/Cryptic-Crossword-Companion
Langues Prises en Charge 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": []
        }
    ]
}