View 360 videos on many popular sites in $WINDOWS_MIXED_REALITY$.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"author": "Microsoft Corporation",
"description": "__MSG_appDesc__",
"name": "360 Viewer",
"version": "2.5.3",
"minimum_chrome_version": "75.0.130",
"manifest_version": 2,
"default_locale": "en",
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"storage",
"tabs",
"activeTab",
"<all_urls>",
"metricsPrivate",
"errorReporting"
],
"icons": {
"24": "images/3_ExtensionIcon_24x24.png",
"48": "images/3_ExtensionIcon_48x48.png"
},
"content_scripts": [
{
"js": [
"start.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"web_accessible_resources": [
"start.js",
"loader.js",
"extension.js"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}