-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
69 lines (69 loc) · 1.88 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"manifest_version": 2,
"name": "RemoteSlide",
"description": "Remotely control slides and presentations from your smartphone.",
"version": "1.0.1",
"author": "inventivetalent",
"homepage_url": "https://remote-sli.de",
"browser_action": {
"default_icon": "img/logo-128.png",
"default_popup": "index.html"
},
"icons": {
"16": "img/logo-16.png",
"32": "img/logo-32.png",
"64": "img/logo-64.png",
"128": "img/logo-128.png",
"256": "img/logo-256.png",
"512": "img/logo-512.png"
},
"permissions": [
"storage",
"tabs",
"activeTab",
"<all_urls>",
"notifications",
"http://*/",
"https://*/"
],
"content_security_policy": "script-src 'self' https://remote-sli.de https://cdnjs.cloudflare.com https://code.jquery.com https://ssl.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"lib/jquery.min.js",
"sessionGrabber.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"lib/jquery.min.js",
"lib/socket.io.js",
"inject/injector.js"
],
"all_frames":true
},
{
"matches":[
"https://prezi.com/*",
"http://prezi.com/*"
],
"js":["util/preziInjector.js"],
"all_frames":true
}
],
"web_accessible_resources": [
"lib/*",
"inject/*",
"util/*"
],
"externally_connectable": {
"matches": [
"*://*.remote-sli.de/*"
]
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmgGEhK6weGVD344+qF6Crf8AxaId/YJ8u4QRE4vPiXECCs3lsg9ixwHJ6GrRGyCeAKOqoQLioTfCCjYSEnaY7+BWea7sEPNjJitUJc98G+t+STX5pPON3vnqbNXfPkJXrQrXFmAW4f9PJkf2mTdIb+VJEKB1pSkxLPoc98B2Va60f8ZS4UxxVYTuFfxtQQXNgRhexW4Dy8xt1IkAIMxwJ3m5U6n3ogc0A5g47jmdZxDSu1dHCvyVKOD6tVMmKMcI8KyrZTuQeJFW7vcdgmLJFlxqXPdsK/6eUhsaseMtVbkEK5ahYXCYTEflpq0L+YSeFkfvAugoVB/U5V6U910KiQIDAQAB"
}