Inspect and view changes in ManageMingle 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": "ManageMingle",
"version": "1.0.10",
"description": "A tool for managing project schedules, activities, and requirements",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"storage",
"identity",
"tabs",
"notifications",
"alarms",
"activeTab"
],
"host_permissions": [
"https://*.supabase.co/*"
],
"action": {
"default_popup": "popup.html",
"default_width": 450,
"default_height": 600,
"default_title": "Project Management",
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src https://*.supabase.co"
},
"web_accessible_resources": [
{
"resources": [
"index.html",
"icon-16.png",
"icon-48.png",
"icon-128.png",
"libs/pdfobject.min.js",
"pdfobject.min.js",
"error-handler.js",
"notification-worker.js",
"popup.html",
"icon.svg",
"popup.js",
"popup.css",
"assets/*",
"*.js",
"*.png",
"*.ico",
"*.css",
"fonts/*"
],
"matches": [
"<all_urls>"
]
}
]
}