27 lines
523 B
JSON
27 lines
523 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "SyncWatch",
|
|
"version": "1.0.0",
|
|
"description": "Sync media playback with a friend in real time",
|
|
"permissions": [
|
|
"storage",
|
|
"alarms",
|
|
"tabs"
|
|
],
|
|
"host_permissions": ["<all_urls>"],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "SyncWatch"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
]
|
|
}
|