-
Notifications
You must be signed in to change notification settings - Fork 20
/
manifest.json
executable file
·69 lines (68 loc) · 1.7 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
{
"description": "This extension reimplement the share feature with Container support and over 14+ social networks",
"manifest_version": 2,
"name": "Share Backported",
"version": "2.1.7",
"icons": {
"16": "icon-dark.svg",
"24": "icon-dark.svg",
"48": "icon-dark.svg",
"96": "icon-dark.svg"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icon-dark.svg",
"24": "icon-dark.svg",
"48": "icon-dark.svg",
"96": "icon-dark.svg"
},
"theme_icons": [{
"dark": "icon-dark.svg",
"light": "icon-light.svg",
"size": 16
},{
"dark": "icon-dark.svg",
"light": "icon-light.svg",
"size": 24
},{
"dark": "icon-dark.svg",
"light": "icon-light.svg",
"size": 48
},{
"dark": "icon-dark.svg",
"light": "icon-light.svg",
"size": 96
}],
"default_title": "Share",
"default_popup": "modal/modal.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Alt+Y"
}
}
},
"page_action": {
"default_icon": "icon-dark.svg",
"browser_style": true
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"tabs",
"storage",
"cookies",
"activeTab",
"management",
"contextualIdentities",
"https://www.reddit.com/*"
]
}