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文件
下載Chess Move Say擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |