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": "YT Loop Station",
"version": "2025.11.4",
"description": "Precision A\/B looping with 30ms crossfade for seamless YouTube playback. Perfect for music practice and language learning.",
"permissions": [
"activeTab"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*"
],
"action": {
"default_title": "Toggle Loop Station"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"loop-station-text.png"
],
"matches": [
"*:\/\/www.youtube.com\/*"
]
}
]
}