Inspect and view changes in Absolute for Chromebooks Guest Mode 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": "Absolute for Chromebooks Guest Mode",
"short_name": "Absolute for Chromebooks Guest Mode",
"description": "Absolute for Chromebooks Extension Guest Mode",
"version": "2.6.5.8",
"permissions": [
"enterprise.deviceAttributes",
"enterprise.networkingAttributes",
"power",
"geolocation",
"idle",
"webNavigation",
"identity",
"identity.email",
"management",
"system.storage",
"system.cpu",
"system.display",
"system.memory",
"storage",
"tabs",
"alarms",
"activeTab",
"offscreen",
"notifications"
],
"host_permissions": [
"*://*/*",
"<all_urls>"
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"options_page": "resources/options.html",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/resources/agent-listener.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "bg_wrapper.js"
},
"storage": {
"managed_schema": "schema.json"
}
}