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": "YouTube Loop Controller",
"version": "1.0",
"description": "Loop YouTube video between custom start and end times",
"permissions": [
"storage",
"tabs",
"activeTab",
"scripting"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"action": {
"default_popup": "index.html",
"default_icon": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}