Spelling Bee Hints

Hints for the NYT Spelling Bee

Was ist Spelling Bee Hints?

Spelling Bee Hints ist eine Chrome-Erweiterung, die von https://spellingbeehints.com entwickelt wurde, und ihr Hauptmerkmal ist "Hints for the NYT Spelling Bee".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Spelling Bee Hints-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spelling Bee Hints-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Get hints while you're working on the daily spelling bee. See counts of word lengths, beginnings and pangrams. Also shows pangram synonyms. Track your progress, and now this version turns off the flashing cursor when the window is not active.                    

Grundlegende Informationen zur Erweiterung

Name Spelling Bee Hints Spelling Bee Hints
ID mfcgmhobngkmmdcpjmnkdaomjkeogikn
Offizielle URL https://chromewebstore.google.com/detail/spelling-bee-hints/mfcgmhobngkmmdcpjmnkdaomjkeogikn
Beschreibung Hints for the NYT Spelling Bee
Dateigröße 26.26 KB
Installationsanzahl 48
Aktuelle Version 1.3
Letztes Update 2023-01-13
Veröffentlichungsdatum 2022-02-12
Entwickler https://spellingbeehints.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://spellingbeehints.com
Hilfeseite URL https://spellingbeehints.com
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Chrish",
    "description": "Hints for the NYT Spelling Bee",
    "manifest_version": 3,
    "name": "Spelling Bee Hints",
    "version": "1.3",
    "permissions": [
        "declarativeContent",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.nytimes.com\/puzzles\/spelling-bee",
        "https:\/\/spellingbeehints.com\/*"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/hints-16.png",
            "24": "icons\/hints-24.png",
            "32": "icons\/hints-32.png",
            "48": "icons\/hints-48.png",
            "64": "icons\/hints-64.png",
            "128": "icons\/hints-128.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "Spelling Bee Hints"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/puzzles\/spelling-bee",
                "https:\/\/www.nytimes.com\/puzzles\/spelling-bee?*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/hints-16.png",
        "24": "icons\/hints-24.png",
        "32": "icons\/hints-32.png",
        "48": "icons\/hints-48.png",
        "64": "icons\/hints-64.png",
        "128": "icons\/hints-128.png"
    }
}