Free screen recorder extension
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "EasyRecorder",
"version": "1.0.2",
"description": "Free screen recorder extension",
"author": "alfxjx",
"manifest_version": 2,
"icons": {
"16": "icons/16.png",
"128": "icons/128.png"
},
"permissions": [
"<all_urls>",
"*://*/*",
"activeTab",
"tabs",
"cookies",
"background",
"contextMenus",
"unlimitedStorage",
"storage",
"notifications",
"identity",
"identity.email"
],
"browser_action": {
"default_title": "EasyRecorder",
"default_popup": "pages/popup.html"
},
"background": {
"persistent": false,
"page": "pages/background.html"
},
"devtools_page": "pages/devtools.html",
"options_page": "pages/options.html",
"content_scripts": [
{
"js": [
"js/inject.js"
],
"run_at": "document_end",
"matches": [
"<all_urls>"
],
"all_frames": true
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"panel.html",
"js/content.js"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}