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": "Loom video downloader", "description": "Download Loom videos anywhere in 1 click. It's that easy!", "version": "1.0.3", "permissions": [ "offscreen", "downloads", "webRequest", "storage", "tabs", "activeTab" ], "background": { "service_worker": "background.js", "type": "module" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "https:\/\/www.loom.com\/*", "https:\/\/www.google-analytics.com\/", "https:\/\/www.googletagmanager.com\/" ], "action": { "default_popup": "popup.html", "default_title": "Loom video downloader", "default_icon": { "16": "icons\/logo.png", "32": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" } }, "icons": { "16": "icons\/logo.png", "32": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "contentScript.js" ], "type": "module", "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "icons\/*.png", "icons\/*.svg" ], "matches": [ "<all_urls>" ] }, { "resources": [ "content.js", "\/utils\/cleanByFFmpeg.js" ], "matches": [ "<all_urls>" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" } }