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",
"version": "5.0",
"name": "Youtube Right Side Comments",
"description": "Easily toggle YouTube comments to the right or default left side with our Chrome extension for a more organized viewing experience.",
"icons": {
"128": "youtubeIcon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "youtubeIcon.png"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"toggle-comments": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Ctrl+Shift+Y"
},
"description": "Toggle YouTube comments position"
}
},
"permissions": [
"activeTab",
"scripting",
"commands"
],
"content_scripts": [
{
"css": [
"styles.css"
],
"js": [
"content.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"manifest_version": 3
}