Inspect and view changes in Vormats - Screen Recorder for the workplace 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
{
"name": "Vormats - Screen Recorder for the workplace",
"version": "2.5.3",
"manifest_version": 3,
"description": "Quickly and easily make and share videos for asynchronous communication. Capture your screen. Share and track your engagement.",
"permissions": [
"storage",
"desktopCapture",
"activeTab",
"notifications",
"tabs",
"scripting"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"minimum_chrome_version": "88",
"icons": {
"128": "asset/vormats32x32.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_icon": "asset/vormats32x32.png",
"default_title": "Vormats",
"default_popup": "popup-action.html"
},
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"content.js",
"extapp.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"inboxsdk.js",
"gmail.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://secure.vormats.com/*"
],
"js": [
"accordium.js"
],
"run_at": "document_start"
},
{
"matches": [
"https://docs.google.com/*"
],
"js": [
"google-docs.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"content.css",
"gmail.css",
"content-frame.html",
"upload-file.html",
"asset/vormats32x32.png",
"shapes.png",
"popup.html",
"popup-action.html",
"asset/camera_permission.jpg",
"asset/microphone_permission.jpg",
"autocue.html"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Alt+Shift+V",
"mac": "Alt+Shift+V",
"linux": "Alt+Shift+V",
"default": "Alt+Shift+V"
}
},
"pause_and_resume": {
"suggested_key": {
"windows": "Alt+Shift+P",
"mac": "Alt+Shift+P",
"linux": "Alt+Shift+P",
"default": "Alt+Shift+P"
},
"description": "Pause & Resume Recording"
},
"cancel": {
"suggested_key": {
"windows": "Alt+Shift+C",
"mac": "Alt+Shift+C",
"linux": "Alt+Shift+C",
"default": "Alt+Shift+C"
},
"description": "Cancel Recording"
},
"restart_recording": {
"suggested_key": {
"windows": "Alt+Shift+R",
"mac": "Alt+Shift+R",
"linux": "Alt+Shift+R",
"default": "Alt+Shift+R"
},
"description": "Quick restart"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}