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": "LeetCode Assistant", "version": "1.4.6", "permissions": [ "scripting" ], "description": "An assistant that provides hints, analyzes your solution, and answers your questions while solving LeetCode problems.", "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ { "resources": [ "page-inject.js" ], "matches": [ "<all_urls>" ] } ] }