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 Loop Repeater: Music Practice Tool",
"description": "Loop any video\/song on YouTube with custom controls, incrementally increase speed, save loops. No more clicking through videos!",
"version": "1.0.3",
"action": {
"default_popup": "popup\/popup.html",
"default_icon": "images\/icons\/toolbar-icon48.png"
},
"icons": {
"48": "images\/icons\/toolbar-icon48.png",
"128": "images\/icons\/toolbar-icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"scripts\/contentScript.js"
],
"type": "module",
"run_at": "document_idle"
}
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"permissions": [
"activeTab",
"scripting",
"storage",
"tabs"
],
"background": {
"service_worker": "background.js"
}
}