PawnGun
Live Analysis for Lichess.org Games
Apa itu PawnGun?
PawnGun adalah ekstensi Chrome yang dikembangkan oleh PawnGun, dan fitur utamanya adalah "Live Analysis for Lichess.org Games".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi PawnGun
Unduh file ekstensi PawnGun dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension has the following features: * Allows you to view LIVE analysis while you are watching or streaming games being played live in that moment. * This extension DOES NOT suggest good moves, it only shows how bad or good is each side according to a chess engine Analysis. * Works only for Lichess.org ... for now. * Does not support Chess960 variant ... for now. * You should use this extension only for educational purposes. I am not affiliated in any way with lichess or chess.com.
Informasi Dasar Ekstensi
Nama | PawnGun |
ID | jbabllibbfajahdjapeiphjdiencjame |
URL Resmi | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
Deskripsi | Live Analysis for Lichess.org Games |
Ukuran File | 102 KB |
Jumlah Instalasi | 82 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2020-12-26 |
Tanggal Publikasi | 2020-12-21 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | PawnGun |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.thapawngun.live |
URL Halaman Bantuan | http://www.thapawngun.live |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PawnGun", "description": "Live Analysis for Lichess.org Games", "version": "0.1", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "jquery-3.3.1.min.js", "chess.js", "content.js", "lozza.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |