-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·56 lines (56 loc) · 1.67 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
{
"name":"Zalvadora Screen Recoder",
"short_name":"zalvadora",
"author":"Sikandar Tariq",
"version":"5.8",
"manifest_version":2,
"minimum_chrome_version":"49",
"description":"Record screen with you custom options, aslo recode pdf lectures with cam.",
"homepage_url":"https://zalvadora.com",
"background":{
"scripts":[
"background/background.common.js",
"background/background.js",
"background/background.desktopCapture.js",
"background/background.tabCapture.js",
"background/background.badgeText.js",
"background/background.getUserMedia.js",
"background/background.messaging.js",
"background/background.players.js",
"RecordRTC/MediaStreamRecorder.js",
"RecordRTC/MultiStreamRecorder.js",
"RecordRTC/DiskStorage.js"
],
"persistent":false
},
"browser_action":{
"default_icon":"images/main-icon.png",
"default_title":"Record Your Screen, Tab or Camera",
"default_popup": "dropdown.html"
},
"icons":{
"16":"images/main-icon.png",
"22":"images/main-icon.png",
"32":"images/main-icon.png",
"48":"images/main-icon.png",
"128":"images/main-icon.png"
},
"permissions":[
"desktopCapture",
"storage",
"tabs",
"tabCapture",
"activeTab",
"identity",
"https://www.googleapis.com/*"
],
"content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'",
"web_accessible_resources":[
"images/main-icon.png"
],
"options_ui":{
"page":"options.html",
"chrome_style":false,
"open_in_tab": true
}
}