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.1.0", "description": "Download Vimeo videos directly to your computer", "permissions": [ "downloads", "activeTab", "storage", "tabs", "scripting", "offscreen", "cookies" ], "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\/*" ], "background": { "service_worker": "background-enhanced.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/vimeo.com\/*", "https:\/\/*.vimeo.com\/*", "https:\/\/player.vimeo.com\/*" ], "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\/**\/*" ], "matches": [ "<all_urls>" ] } ], "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' 'unsafe-eval' 'wasm-unsafe-eval'; child-src 'self';" } }