Miva ExamWatch Auto-Proctoring Tool ensures online exam integrity at Miva Open University through automated proctoring.
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": "Miva Exam Watch",
"description": "Miva ExamWatch Auto-Proctoring Tool ensures online exam integrity at Miva Open University through automated proctoring.",
"version": "1.0.2",
"manifest_version": 3,
"host_permissions": [
"https://www.google.com/",
"https://api.openai.com/",
"http://*/*",
"https://*/*",
"https://cdn.jsdelivr.net/*",
"https://fonts.googleapis.com/*"
],
"icons": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Miva Exam Watch",
"default_icon": "logo192.png"
},
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"css/tailwind.css"
],
"font": [
"fonts"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"media-vision/wasm/*",
"models/*",
"images/*"
],
"matches": [
"<all_urls>"
]
}
],
"externally_connectable": {
"matches": [
"*://*.google.com/*",
"*://*.com/*"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval' http://localhost:* http://127.0.0.1:*; object-src 'self'"
}
}