The UserTesting Browser Recorder is an extension that records your screen and audio when you are providing feedback on websites or…
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": "UserTesting Beta Classic Browser Recorder",
"short_name": "UserTesting Beta Classic Browser Recorder",
"version": "140.5.9",
"description": "",
"author": "UserTesting.com",
"background": {
"service_worker": "sw.bundle.js",
"type": "module"
},
"default_locale": "en",
"options_page": "options.html",
"options_ui": {
"page": "options.html"
},
"permissions": [
"scripting",
"sessions",
"storage",
"system.cpu",
"system.display",
"system.memory",
"activeTab",
"tabs",
"unlimitedStorage",
"desktopCapture",
"offscreen",
"alarms"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentscript.bundle.js"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"16": "images/UT_16x16.png",
"32": "images/UT_32x32.png",
"48": "images/UT_48x48.png",
"96": "images/UT_96x96.png",
"128": "images/UT_128x128.png"
},
"web_accessible_resources": [
{
"resources": [
"images/*",
"recorder_permissions.html",
"permissions.html",
"_locales/*",
"*.js.map",
"external/initializeUxa.js",
"external/uxaExternal.js"
],
"matches": [
"<all_urls>"
]
}
]
}