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 Speed Control & A-B Loop",
"version": "1.1.0",
"description": "Add custom speed controls (60%, 70%, 75%, 80%, 90%) and A-B loop functionality to YouTube videos",
"permissions": [
"activeTab"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}
}