-
Notifications
You must be signed in to change notification settings - Fork 68
/
manifest.json
27 lines (27 loc) · 995 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "Pychat Screensharing Extension",
"description": "This extension allows to shareScreen during a call for pychat.org.",
"version": "1.0.1",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk2Ad9n6KHqF5MZ9lR9scs2b5LqeBXoBwWCwoTUYekVqKnytVHr1p0j6oR0bme6AFkSVDAMMK0NtP2+J7/ZKHJoX+GDxUc9+av8auIbu2asEPtHv05TAMWpkmD0CRReYQnZJfpRYm65gIrNyrqbi8SgEAxdp3vxfQ2ctXPiM9Zpya10ofee7250YCrfUTo6Pn2sygt8yMtcz/mu/t2tNFcK0LVt7H98eFAnm94nYUvzGT7thTDpK6zyrHYRHnNaoRg2a6miNywuM2T64SqgD5EtmP7bKzBAWQdgYGOj7vv+5Hj244Gb35mghU0UjhQQzPWNyXaTF1JVG/+txqD3ZMCQIDAQAB",
"author": "[email protected] https://github.com/Deathangel908",
"manifest_version": 2,
"icons": {
"16": "icon-16.png",
"128": "icon-128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"externally_connectable": {
"matches": [
"https://localhost:8000/*",
"https://localhost:8080/*",
"https://pychat.org/*"
]
},
"permissions": [
"desktopCapture"
]
}