Improve your chess skills with Chess.com Analyzer - a free app to analyzes your game using Stockfish to highlight the best move
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"action": {
"default_popup": "popup.html"
},
"version_name": "First Release",
"author": "Samuel Hinchliffe",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"js": [
"jquery.js",
"content.js"
],
"matches": [
"https://www.chess.com/play/*",
"https://www.chess.com/game/live/*"
]
}
],
"description": "Improve your chess skills with Chess.com Analyzer - a free app to analyzes your game using Stockfish to highlight the best move",
"manifest_version": 3,
"name": "Chess.com Analyzer",
"permissions": [
"activeTab",
"storage"
],
"version": "1.3"
}