Quickly record screen with audio and camera. Instantly share videos with one click.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "__MSG_extension_name__",
"short_name": "__MSG_extension_short_name__",
"version": "0.1.71",
"version_name": "0.1.71",
"description": "__MSG_extension_description__",
"default_locale": "en",
"icons": {
"48": "./logo_48.png",
"128": "./logo.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"vendors.bundle.js",
"runtime.bundle.js",
"frames.bundle.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"content.bundle.js"
]
}
],
"background": {
"scripts": [
"vendors.bundle.js",
"runtime.bundle.js",
"background.bundle.js",
"mp4_muxer.js"
],
"persistent": true
},
"options_page": "options.html",
"browser_action": {
"default_title": "__MSG_browser_action_title__",
"default_popup": "popup.html?mode=popup"
},
"web_accessible_resources": [
"logo.png",
"camera-video.html",
"get-access.html",
"upload.html",
"static/*",
"fonts/*",
"models/*",
"tflite/*",
"backgrounds/*",
"mp4_muxer.wasm",
"mp4_muxer.worker.js"
],
"externally_connectable": {
"matches": [
"*://vidline.com/*",
"https://*.vidline.com/*"
]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+V",
"mac": "MacCtrl+Command+V"
}
},
"start_or_stop": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "MacCtrl+Command+S"
},
"description": "__MSG_shortcuts_start_or_stop__"
},
"pause_or_resume": {
"suggested_key": {
"default": "Ctrl+Shift+R",
"mac": "MacCtrl+Command+R"
},
"description": "__MSG_shortcuts_pause_or_resume__"
}
},
"permissions": [
"*://*.vidline.com/*",
"<all_urls>",
"cookies",
"desktopCapture",
"tabCapture",
"notifications",
"activeTab",
"unlimitedStorage",
"contextMenus",
"idle",
"power"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"offline_enabled": true,
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}