Wordle - Dictionary extension
Think of this Chrome extension as your handy dictionary when playing Wordle.
Wordle - Dictionary extension란 무엇입니까?
Wordle - Dictionary extension은(는) Pankaj Bahekar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Think of this Chrome extension as your handy dictionary when playing Wordle."입니다.
확장 프로그램 스크린샷
Wordle - Dictionary extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It displays the meaning of words as you enter them, helping you to improve your vocabulary as you go. How it works: 1. Install this extension 2. Navigate to https://www.nytimes.com/games/wordle/index.html and start playing Wordle. 3. Your guessed word's dictionary meaning will show up next to it. 4. If the word you entered has multiple meanings, you'll see the definitions appear one after the other - The extension will only display a word's meaning after the game has accepted your input as a valid word. - This extension will not help you with any recommendations or assist in winning the game, unfortunately! - The extension supports both dark and light mode
확장 프로그램 기본 정보
이름 | Wordle - Dictionary extension |
ID | icbafdifdgmegfeljhihlpajpmbkmfbg |
공식 URL | https://chromewebstore.google.com/detail/wordle-dictionary-extensi/icbafdifdgmegfeljhihlpajpmbkmfbg |
설명 | Think of this Chrome extension as your handy dictionary when playing Wordle. |
파일 크기 | 21.14 KB |
설치 횟수 | 60 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2022-02-23 |
출시 날짜 | 2022-02-15 |
개발자 | Pankaj Bahekar |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.interactivephi.com/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordle - Dictionary extension", "description": "Think of this Chrome extension as your handy dictionary when playing Wordle.", "version": "1.0.2", "manifest_version": 3, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.nytimes.com\/games\/wordle\/index.html" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/128.png", "32": "\/128.png", "48": "\/128.png", "128": "\/128.png" } }, "icons": { "16": "\/128.png", "32": "\/128.png", "48": "\/128.png", "128": "\/128.png" } } |