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": "Looper for YouTube \u2014 Loop & Save Sections",
"version": "1.0.1",
"description": "Loop any segment of YouTube videos with A-B points and save your favorite sections. Perfect for musicians and learners.",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/music.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/music.youtube.com\/*"
],
"js": [
"src\/content-new.js"
],
"css": [
"styles.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "src\/background-new.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_title": "Looper for YouTube \u2014 Loop & Save Sections - Click to show widget"
},
"icons": {
"16": "icons\/icon16.png",
"19": "icons\/icon19.png",
"32": "icons\/icon32.png",
"38": "icons\/icon38.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"src\/constants\/config.js",
"src\/utils\/helpers.js",
"src\/managers\/*.js",
"src\/ui\/*.js",
"src\/core\/*.js",
"icons\/*"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/music.youtube.com\/*"
]
}
],
"commands": {
"set-point-a": {
"suggested_key": {
"default": "Alt+A"
},
"description": "Set point A at current time"
},
"set-point-b": {
"suggested_key": {
"default": "Alt+B"
},
"description": "Set point B at current time"
},
"toggle-loop": {
"suggested_key": {
"default": "Alt+L"
},
"description": "Toggle A-B loop"
},
"clear-points": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Clear A-B points"
}
}
}