Inspect and view changes in Genius Chrome Extension 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": "Genius Chrome Extension",
"description": "Making your wishlists come true.",
"version": "1.41",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Genius",
"default_icon": "genie.png"
},
"background": {
"service_worker": "./static/js/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./static/js/content.js"
]
}
],
"devtools_page": "index.html",
"permissions": [
"tabs",
"activeTab",
"cookies"
],
"host_permissions": [
"http://localhost/*",
"https://localhost/*",
"https://chrome-extension-dusky.vercel.app/*",
"https://www.chrome-extension-dusky.vercel.app/*"
]
}