Inspect and view changes in AI Images upscale 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": 3,
"minimum_chrome_version": "96",
"name": "AI Images upscale",
"version": "1.0.2",
"description": "Enhances AI image upscale, increases image upscale limit, allowing more powerful AI creations on neuralwriter.com website",
"permissions": [
"alarms",
"idle",
"storage",
"tabs",
"scripting",
"background",
"declarativeNetRequest"
],
"host_permissions": [
"*://*/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [],
"content_scripts": [
{
"js": [
"general.js"
],
"matches": [
"<all_urls>"
],
"all_frames": true,
"match_about_blank": true
},
{
"js": [
"math.js"
],
"matches": [
"<all_urls>"
],
"all_frames": true,
"match_about_blank": true
},
{
"matches": [
"<all_urls>"
],
"js": [
"nw.js"
],
"all_frames": true,
"match_about_blank": true
}
],
"icons": {
"128": "128.png"
}
}