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": "NeatLeet", "version": "1.3", "description": "Simplify your LeetCode journey with instant access to NeetCode.io solutions!", "permissions": [ "webNavigation" ], "host_permissions": [ "https:\/\/leetcode.com\/*" ], "action": { "default_icon": "logo.png" }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "images\/logo.png" ], "matches": [ "https:\/\/leetcode.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ] } ], "icons": { "16": "images\/logo.png", "32": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" } }