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
官方網址 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": []
        }
    ]
}