Inspect and view changes in AI Stock Photos Pro 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,
"name": "AI Stock Photos Pro",
"description": "AI Stock Photos Pro presents you with thousands of beautiful royalty free images that you can easily download and use in any project",
"version": "1.0.0",
"icons": {
"16": "logo/logo-16.png",
"48": "logo/logo-48.png",
"128": "logo/logo-128.png"
},
"options_page": "settings/settings.html",
"action": {
"default_title": "AI Stock Photos Pro",
"default_popup": "popup/popup.html"
},
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"js": [
"foreground.js"
],
"matches": [
"https://photostockapp.com/*"
]
}
]
}