Inspect and view changes in Codeforces Daily Question 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Codeforces Daily Question",
"version": "1.03",
"manifest_version": 3,
"host_permissions": [
"https://codeforces.com/*"
],
"content_scripts": [
{
"matches": [
"https://codeforces.com/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": "logos/logo48.png"
},
"icons": {
"16": "logos/logo16.png",
"48": "logos/logo48.png",
"128": "logos/logo128.png"
},
"background": {
"service_worker": "background.js"
}
}