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",
"name": "Youtube comments responder",
"description": "extension description here.",
"version": "1.4",
"manifest_version": 3,
"host_permissions": [
"<all_urls>"
],
"permissions": [
"tabs",
"cookies",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"foreground.js"
],
"css": [
"foreground.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images\/*",
"test2.png"
],
"matches": [
"https:\/\/*.youtube.com\/*"
]
}
],
"action": {
"default_title": "Youtube comments responder"
},
"icons": {
"128": "images\/logo.png"
},
"externally_connectable": {
"matches": [
"*:\/\/localhost\/*",
"*:\/\/*.replier.org\/*"
]
}
}