Inspect and view changes in CSES Helper source codes across current and past versions
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": "CSES Helper",
"description": "Tools for CSES Online Judge",
"homepage_url": "https://github.com/dada878",
"version": "0.0.4",
"author": "Dada878",
"action": {
"default_icon": "assets/favicon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "assets/favicon.png",
"48": "assets/favicon.png",
"128": "assets/favicon.png"
},
"permissions": [],
"host_permissions": [
"https://cses.fi/*",
"https://github.com/dada878/CSES-Helper/*"
],
"content_scripts": [
{
"matches": [
"https://cses.fi/*",
"https://github.com/dada878/CSES-Helper/*"
],
"js": [
"./scripts/main.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "./scripts/background.js"
},
"content_security_policy": {
"extension_pages": "default-src 'self'; connect-src https://* data: blob: filesystem:;"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}