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": "Video Downloader Pro by PlugMonkey",
"short_name": "video-downloader-pro",
"version": "1.0.0",
"description": "Download videos from websites in multiple resolutions. Detect videos on any page and save them with one click. YouTube excluded.",
"permissions": [
"storage",
"downloads"
],
"host_permissions": [
"<all_urls>",
"https:\/\/*.plugmonkey.xyz\/*",
"https:\/\/api.lemonsqueezy.com\/*",
"https:\/\/plugmonkey-license-api.vercel.app\/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end",
"exclude_matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.youtu.be\/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"content\/modal.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; font-src 'self' https:\/\/fonts.googleapis.com https:\/\/fonts.gstatic.com;",
"content_scripts": "font-src 'self' https:\/\/fonts.googleapis.com https:\/\/fonts.gstatic.com"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"author": "PlugMonkey"
}