Initial commit: SyncWatch Chrome extension + WebSocket server
This commit is contained in:
26
extension/manifest.json
Normal file
26
extension/manifest.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user