Inspect and view changes in QwikAssist 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": "QwikAssist",
"version": "2.3.2",
"description": "Interactive AI chat with your current webpage.",
"permissions": [
"activeTab",
"storage"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "./assets/icon48.png",
"128": "./assets/icon128.png"
}
},
"background": {
"scripts": [
"background.js"
],
"service_worker": "background.js"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"browser-polyfill.js",
"content.js"
]
}
],
"icons": {
"48": "./assets/icon48.png",
"128": "./assets/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{5c959d4e-c896-4178-bac2-0004a5565747}",
"strict_min_version": "109.0"
}
}
}