Spelling Bee Hints
Hints for the NYT Spelling Bee
Wat is Spelling Bee Hints?
Spelling Bee Hints is een Chrome-extensie ontwikkeld door https://spellingbeehints.com, en de belangrijkste functie is "Hints for the NYT Spelling Bee".
Extensie Screenshots
Download het CRX-bestand van de extensie Spelling Bee Hints
Download Spelling Bee Hints-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
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.
Basisinformatie over de Extensie
Naam | Spelling Bee Hints |
ID | mfcgmhobngkmmdcpjmnkdaomjkeogikn |
Officiële URL | https://chromewebstore.google.com/detail/spelling-bee-hints/mfcgmhobngkmmdcpjmnkdaomjkeogikn |
Beschrijving | Hints for the NYT Spelling Bee |
Bestandsgrootte | 26.26 KB |
Aantal Installaties | 48 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2023-01-13 |
Publicatiedatum | 2022-02-12 |
Ontwikkelaar | https://spellingbeehints.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://spellingbeehints.com |
Help Pagina-URL | https://spellingbeehints.com |
Ondersteunde Talen | 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" } } |