Inspect and view changes in 365 Navigation Mate 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": "365 Navigation Mate",
"version": "3.0",
"description": "A navigation helper for Microsoft 365",
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https://*.sharepoint.com/*",
"https://navmatelinkstorage.blob.core.windows.net/*"
],
"action": {
"default_popup": "ui/popup/popup.html",
"default_icon": {
"128": "assets/icon.png"
}
},
"icons": {
"128": "assets/icon.png"
},
"content_scripts": [
{
"matches": [
"https://*.sharepoint.com/*"
],
"js": [
"/content/contentScript.js"
],
"type": "module"
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"assets/Icons/*.svg",
"assets/Icons/*.png"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'"
}
}