Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Looper", "description": "Custom loops extension for Youtube videos", "version": "2024.9.15", "icons": { "16": "icon\/16.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "dashboard.html" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Default Popup Title", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "all_frames": true, "css": [ "content-scripts\/youtube.css" ], "js": [ "content-scripts\/youtube.js" ] } ] }