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": "Repeat for YouTube\u2122 A-B \u2014 HNE Looper",
"version": "1.0.9",
"author": "hnetechnologies",
"description": "Loop any YouTube segment with A-B repeat and counts (\u221e or N). Clean popup UI, hotkeys, badge. Works on Shorts & YouTube Music.",
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "HNE YouTube Repeater",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"commands": {
"toggle-repeat": {
"suggested_key": {
"default": "Ctrl+Shift+R",
"mac": "Command+Shift+R"
},
"description": "Toggle repeat on\/off"
},
"set-a": {
"suggested_key": {
"default": "Ctrl+Shift+Comma",
"mac": "Command+Shift+Comma"
},
"description": "Set A point (start)"
},
"set-b": {
"suggested_key": {
"default": "Ctrl+Shift+Period",
"mac": "Command+Shift+Period"
},
"description": "Set B point (end)"
}
}
}