Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chess Assistant", "description": "Chess Assistant provides chess hints and analysis on chess.com", "version": "0.2.1", "icons": { "192": "icon.png" }, "action": { "default_icon": { "192": "icon.png" }, "default_title": "Chess Assistant" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.chess.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.chess.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false } }