Inspect and view changes in Quext AI 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": "Quext AI",
"version": "0.2.2",
"description": "An AI-powered quiz generator for any web page",
"manifest_version": 3,
"action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"permissions": [
"contextMenus",
"activeTab",
"storage"
],
"host_permissions": [
"https://api.streamelements.com/*",
"https://api.openai.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"popup.html",
"popup.js",
"popup.css"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
}
}