manifest.json
656 Bytes
{
"manifest_version": 2,
"name": "VideoRecorder",
"version": "0.0.1",
"description": "Record video in pages for download",
"permissions": [
"tabs",
"downloads",
"webNavigation",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"lib/jquery-1.12.1.js",
"lib/md5.js",
"lib/ffmpeg.min.js",
"background/background.js"
]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content/content.js"],
"run_at": "document_idle",
"all_frames": true
}
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "VideoRecorder",
"default_popup": "popup/popup.html"
}
}