Chess Move Say
Reads chess move names aloud after moves are played.
Chess Move Say란 무엇입니까?
Chess Move Say은(는) Advait Shinde에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reads chess move names aloud after moves are played."입니다.
확장 프로그램 스크린샷
Chess Move Say 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chess Move Say
==============
Chess Move Say will read aloud chess moves played on Lichess.org.
Chess Move Say is open source. Please contribute at:
https://gitlab.com/advait3000/chess-move-say 확장 프로그램 기본 정보
| 이름 | |
| ID | bffngaamkkngdgfojfpahbhmfodpbbho |
| 공식 URL | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
| 설명 | Reads chess move names aloud after moves are played. |
| 파일 크기 | 1.73 MB |
| 설치 횟수 | 165 |
| 현재 버전 | 1.0 |
| 최근 업데이트 | 2019-11-22 |
| 출시 날짜 | 2019-11-22 |
| 평점 | 4.00/5 총 1 개의 평점 |
| 개발자 | Advait Shinde |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://gitlab.com/advait3000/chess-move-say |
| 도움말 페이지 URL | https://gitlab.com/advait3000/chess-move-say/issues |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Reads chess move names aloud after moves are played.",
"version": "1.0",
"name": "Chess Move Say",
"background": {
"scripts": [
"background.bundle.js"
],
"persistent": false
},
"icons": {
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png",
"256": "icon-256.png",
"512": "icon-512.png"
},
"browser_action": {
"default_icon": {
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png",
"256": "icon-256.png",
"512": "icon-512.png"
}
},
"permissions": [
"declarativeContent",
"storage",
"https:\/\/lichess.org\/*"
],
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"https:\/\/lichess.org\/*"
],
"run_at": "document_end",
"js": [
"cs.bundle.js"
]
}
],
"web_accessible_resources": [
"direct_script.bundle.js",
"*.wav"
]
} | |