Spaced repetition for Leetcode.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Lanki",
"version": "0.0.2",
"description": "Spaced repetition for Leetcode.",
"icons": {
"16": "static/icon16.png",
"32": "static/icon32.png",
"48": "static/icon48.png",
"128": "static/icon128.png"
},
"content_scripts": [
{
"resources": [
"src/html/lanki.html",
"src/html/login.html"
],
"matches": [
"https://leetcode.com/problems/",
"https://leetcode.com/problems/*"
],
"js": [
"dist/content.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src/html/lanki.html",
"src/html/login.html",
"static/logo.svg"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"tabs",
"identity",
"storage"
],
"oauth2": {
"client_id": "188520372969-bhq3fpkmri3du9ivujatebi7b8ba9fhv.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
],
"redirect_uri": "https://lgcildcaceplodlljgkdfmdkdoobnnnb.chromiumapp.org"
},
"background": {
"service_worker": "dist/background.bundle.js"
}
}