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",
"manifest_version": 3,
"name": "Search Youtube Comments and Channels",
"short_name": "Search Youtube",
"version": "0.1.0",
"description": "A simple extension to search through YouTube comments and channels",
"host_permissions": [
"https:\/\/*.youtube.com\/*"
],
"permissions": [
"storage",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"preamble.js"
],
"run_at": "document_start"
}
],
"icons": {
"128": "128.png"
},
"web_accessible_resources": [
{
"resources": [
"main.js"
],
"matches": [
"https:\/\/*.youtube.com\/*"
]
}
]
}