Displays updated company tags and numeric difficulty ratings. Instantly generate random, realistic test cases for any LeetCode problem at the click of a button. Aimed to improve quality of life and help you land the job of your dreams.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "LeetTest",
"version": "1.0",
"description": "LeetCode Test Case Generator",
"action": {
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "leet@test.com"
}
},
"permissions": [
"tabs"
],
"host_permissions": [
"https://kohlenz.com/*"
],
"content_scripts": [
{
"js": [
"scripts/popup.js",
"scripts/inject.js",
"scripts/report.js",
"scripts/modify.js"
],
"matches": [
"https://leetcode.com/problems/*"
]
}
],
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"scripts/companies.json"
],
"matches": [
"<all_urls>"
]
}
]
}