Add download button to the video files on FB, Twitter, Instagram, Video, Daylimotion. Free Video Downloader for web
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_name__",
"description": "__MSG_desc__",
"default_locale": "en",
"version": "3.0",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"32": "image48.png",
"48": "image48.png",
"128": "image128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"buttonContentScript.js"
],
"css": [
"buttonContentScript.css"
]
}
],
"action": {
"default_title": "__MSG_title__",
"default_popup": "index.html",
"default_icon": {
"16": "logo.png",
"32": "image48.png",
"48": "image48.png",
"128": "image128.png"
}
},
"background": {
"service_worker": "buttonBackground.js"
},
"permissions": [
"storage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}