Inspect and view changes in VRooms - Test Figma Designs in VR 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",
"name": "VRooms - Test Figma Designs in VR",
"version": "1.0.4",
"manifest_version": 2,
"description": "Design for VR without the pain of compiling and running code or VR programs. View your Figma designs in VR.",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/livereload.js",
"scripts/background.js"
]
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https://www.figma.com/file/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_title": "VRooms",
"default_popup": "popup.html"
},
"content_security_policy": "script-src unsafe-inline 'self' https://ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js https://ajax.googleapis.com; object-src 'self'"
}