forked from alyssaxuu/screenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
72 lines (70 loc) · 2.58 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
70
71
{
"name": "Screenity - Screen Recorder & Annotation Tool",
"description": "The most powerful screen recorder for Chrome. Capture, annotate, edit, and more.",
"version": "2.0.0",
"manifest_version": 2,
"background": {
"scripts": ["js/background.js"],
"persistent": false
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9pb4XFYH1UnRSPKMiLJkrawC33zmGf2x2OjCGvENRqqpIsVPzdbBtkx7y1Ho4rFcXx8CYNyt4E9avnuMVQgE43FIZJwmZYjyNXUEskd2FPZmpqqHGK3zSNgB6rP12Cgazk7WMjl24CpEOS6K7ZiE/7uSK17kv9ZcKgoMlnWEh5HhdjtnvfZkMCQvWN2IxGLjFiB7C2zsjayIijTS+rA6nXstVy07hur4rFayrkLXu4SbRggNzb7YKIevs05F+whBuEAcPmd4ZOh3y+JCMJydjZ8iEDFkkFxVuwrMngdvUn4iqnDHneogHyS1zaD2XkQ9SAX1IcAmMbOSTWQCUX0LgwIDAQAB",
"oauth2": {
"client_id": "CLIENT_ID",
"scopes": [
"https://www.googleapis.com/auth/drive.appdata",
"https://www.googleapis.com/auth/drive.file"
]
},
"browser_action": {
"default_icon": "assets/extension-icons/logo-32.png",
"default_popup": "html/popup.html"
},
"icons": {
"16": "assets/extension-icons/logo-16.png",
"128": "assets/extension-icons/logo-128.png",
"48": "assets/extension-icons/logo-48.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["js/detect.js"]
}
],
"permissions": [
"<all_urls>","activeTab", "tabCapture", "tabs", "downloads", "desktopCapture", "storage", "identity", "https://www.googleapis.com/*"
],
"web_accessible_resources": [ "html/camera.html","html/sources.html","html/settings.html","js/content.js","css/content.css","assets/images/*","js/sources.js", "js/cameracontent.js", "css/cameracontent.css", "js/libraries/plyr.min.js", "css/libraries/plyr.min.css", "js/audiosources.js", "html/audiosources.html"
],
"commands": {
"cancel": {
"suggested_key": {
"default": "Alt+C",
"mac": "Alt+C"
},
"description": "Cancel recording"
},
"mute/unmute": {
"suggested_key": {
"default": "Alt+M",
"mac": "Alt+M"
},
"description": "Mute/unmute microphone"
},
"stop": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "Stop recording"
},
"pause/resume": {
"suggested_key": {
"default": "Alt+P",
"mac": "Alt+P"
},
"description": "Pause/Resume recording"
}
}
}