Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Downloader Baba - Social Video Downloader",
"version": "0.0.2",
"description": "Download & save your favorite videos from major social websites",
"short_name": "DB",
"permissions": [
"downloads",
"scripting",
"tabs"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets\/jquery-3.5.1.min.js",
"logic.js"
],
"css": [
"style.css"
],
"all_frames": true
}
],
"action": {
"default_title": "Downloader Baba",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"images\/icon2.png",
"images\/loader.gif"
],
"matches": [
"<all_urls>"
]
}
]
}