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文件

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