Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Leetcode Explained",
"version": "2.3.1",
"description": "Enhances Leetcode problems with solution code, video explanations, and GPT code analysis.",
"icons": {
"16": "src\/assets\/images\/logo\/icon-16.png",
"32": "src\/assets\/images\/logo\/icon-32.png",
"48": "src\/assets\/images\/logo\/icon-48.png",
"128": "src\/assets\/images\/logo\/icon-128.png"
},
"action": {
"default_popup": "src\/popup\/popup.html"
},
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/chat.openai.com\/api\/auth\/session",
"https:\/\/chatgpt.com\/api\/auth\/session"
],
"background": {
"service_worker": "dist\/background\/background.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"dist\/content-script\/get-gpt-access-token.js",
"dist\/content-script\/get-user-code.js",
"dist\/content-script\/update-solutions-tab.js",
"dist\/content-script\/update-description-tab.js",
"dist\/content-script\/common.js"
],
"matches": [
"https:\/\/leetcode.com\/problems\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src\/assets\/images\/copy-icon.png",
"src\/assets\/images\/check-icon.png",
"src\/assets\/images\/languages\/*"
],
"matches": [
"<all_urls>"
]
}
]
}