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 Looper", "version": "1.1", "description": "A Chrome extension to loop Vimeo videos with custom start and end times.", "permissions": [ "activeTab" ], "host_permissions": [ "https:\/\/*.vimeo.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.vimeo.com\/*" ], "js": [ "vimeo-player.js", "content.js" ], "run_at": "document_idle" } ], "action": { "default_icon": { "16": "public\/icons\/icon16.png", "48": "public\/icons\/icon48.png", "128": "public\/icons\/icon128.png" } }, "icons": { "16": "public\/icons\/icon16.png", "48": "public\/icons\/icon48.png", "128": "public\/icons\/icon128.png" } }