Spelling Bee Hints

Hints for the NYT Spelling Bee

Spelling Bee Hints란 무엇입니까?

Spelling Bee Hints은(는) https://spellingbeehints.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hints for the NYT Spelling Bee"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Spelling Bee Hints 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Spelling Bee Hints Spelling Bee Hints
ID mfcgmhobngkmmdcpjmnkdaomjkeogikn
공식 URL https://chromewebstore.google.com/detail/spelling-bee-hints/mfcgmhobngkmmdcpjmnkdaomjkeogikn
설명 Hints for the NYT Spelling Bee
파일 크기 26.26 KB
설치 횟수 48
현재 버전 1.3
최근 업데이트 2023-01-13
출시 날짜 2022-02-12
개발자 https://spellingbeehints.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://spellingbeehints.com
도움말 페이지 URL https://spellingbeehints.com
지원되는 언어 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"
    }
}