Inspect and view changes in LearnQuick 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": "LearnQuick",
"description": "Student! Get answers to any questions on any online tests.",
"version": "1.0",
"icons": {
"16": "icons/icon.png",
"32": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons/icon.png",
"32": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"permissions": [
"activeTab",
"storage"
],
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"js": [
"./content.js",
"./assets/toast.js"
],
"css": [
"./assets/toast.css"
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
}
]
}