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": "Vimeo Video Downloader",
"version": "2.2.2",
"description": "Download Vimeo videos directly to your computer",
"permissions": [
"downloads",
"storage",
"tabs",
"scripting",
"offscreen",
"cookies",
"declarativeNetRequest"
],
"host_permissions": [
"https:\/\/vimeo.com\/*",
"https:\/\/*.vimeo.com\/*",
"https:\/\/*.vimeocdn.com\/*",
"https:\/\/*.cloudfront.net\/*",
"https:\/\/unpkg.com\/*",
"https:\/\/api.gumroad.com\/*",
"https:\/\/player.vimeo.com\/*",
"<all_urls>"
],
"background": {
"service_worker": "background-enhanced.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"site-config.js",
"logger.js",
"download-manager\/inline-manager.js"
],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": [
"https:\/\/vimeo.com\/*",
"https:\/\/*.vimeo.com\/*",
"https:\/\/player.vimeo.com\/*",
"https:\/\/*.vhx.tv\/*",
"https:\/\/embed.vhx.tv\/*"
],
"js": [
"site-config.js",
"logger.js",
"content-enhanced.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"inject.js"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"offscreen-faststream.html",
"offscreen-faststream.js",
"indexed-db.js"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"modules\/**\/*",
"download-manager\/**\/*"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"download-manager\/integration-helper.js",
"download-manager\/download-manager.js",
"download-manager\/download-manager-ui.js",
"download-manager\/download-manager-state.js",
"download-manager\/download-manager-config.js"
],
"matches": [
"https:\/\/vimeo.com\/*",
"https:\/\/*.vimeo.com\/*",
"https:\/\/player.vimeo.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' ; child-src 'self';"
}
}