Inspect and view changes in GeeksForGeeks - Unlocking Powers 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": "GeeksForGeeks - Unlocking Powers",
"description": "Provide power for the GeeksForGeeks problem solving website of ability to save multiple input and with handy shortcuts.",
"version": "1.2.0",
"action": {
"default_popup": "popup.html",
"default_icon": "images/icon.png"
},
"icons": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"content_scripts": [
{
"matches": [
"https://www.geeksforgeeks.org/problems*"
],
"js": [
"js/content.js"
],
"css": [
"css/content.css"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"activeTab",
"scripting",
"declarativeContent"
],
"background": {
"service_worker": "js/background.js"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"js/cppParser.js",
"js/formatScript.js",
"js/javaParser.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}