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": "Quick Responses for YouTube",
"version": "0.1",
"description": "Add user pre-defined quick responses to YouTube comments.",
"icons": {
"16": "img\/16.png",
"48": "img\/48.png",
"128": "img\/128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/studio.youtube.com\/*"
],
"background": {
"service_worker": "src\/background.js"
},
"action": {
"default_popup": "src\/popup.html",
"default_icon": {
"16": "img\/16.png",
"48": "img\/48.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/studio.youtube.com\/*"
],
"js": [
"src\/content.js"
],
"css": [
"src\/content.css"
]
}
]
}