Inspect and view changes in CF stalker 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",
"manifest_version": 2,
"name": "CF stalker",
"version": "0.1.2",
"description": "stalk profiles on code forces",
"icons": {
"16": "src/icons/16.png",
"48": "src/icons/48.png",
"128": "src/icons/128.png"
},
"browser_action": {
"default_icon": "src/icons/16.png",
"default_popup": "src/popup.html",
"default_title": "CF stalker"
},
"background": {
"scripts": [
"src/js/bgscripts.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://codeforces.com/profile/*"
],
"js": [
"src/lib/jquery-3.6.0.min.js",
"src/lib/chart.min.js",
"src/js/main.js"
]
}
],
"permissions": [
"https://codeforces.com/*"
]
}