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": "CommentSync - Real-time YouTube Comments",
"description": "Sync YouTube comments with video playback. See reactions and timestamps appear automatically as you watch.",
"version": "1.0.2",
"permissions": [
"storage",
"declarativeNetRequestWithHostAccess",
"tabs"
],
"host_permissions": [
"https:\/\/*.youtube.com\/"
],
"action": {
"default_popup": "popup\/popup.html"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"16": "icons\/16x16.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
},
"background": {
"service_worker": "background\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"all_frames": true,
"js": [
"content\/content.js"
],
"css": [
"content\/content.css"
]
}
]
}