-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
117 lines (117 loc) · 2.61 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"author": "[email protected]",
"version": "1.8.0",
"homepage_url": "https://github.com/pdulvp/extract-data",
"description": "__MSG_extensionDescription__",
"icons": {
"16": "icons/icon-16.png",
"20": "icons/icon-20.png",
"25": "icons/icon-25.png",
"30": "icons/icon-30.png",
"32": "icons/icon-32.png",
"40": "icons/icon-40.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"permissions": [
"storage",
"activeTab",
"clipboardRead",
"clipboardWrite",
"notifications",
"contextMenus",
"tabs",
"nativeMessaging"
],
"default_locale": "en",
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/icon-16.png",
"20": "icons/icon-20.png",
"25": "icons/icon-25.png",
"30": "icons/icon-30.png",
"32": "icons/icon-32.png",
"40": "icons/icon-40.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"default_title": "__MSG_extensionName__",
"default_popup": "ui/popup.html",
"theme_icons": [
{
"light": "icons/icon-dark-16.png",
"dark": "icons/icon-16.png",
"size": 16
},
{
"light": "icons/icon-dark-20.png",
"dark": "icons/icon-20.png",
"size": 20
},
{
"light": "icons/icon-dark-25.png",
"dark": "icons/icon-25.png",
"size": 25
},
{
"light": "icons/icon-dark-30.png",
"dark": "icons/icon-30.png",
"size": 30
},
{
"light": "icons/icon-dark-32.png",
"dark": "icons/icon-32.png",
"size": 32
},
{
"light": "icons/icon-dark-40.png",
"dark": "icons/icon-40.png",
"size": 40
},
{
"light": "icons/icon-dark-48.png",
"dark": "icons/icon-48.png",
"size": 48
},
{
"light": "icons/icon-dark-64.png",
"dark": "icons/icon-64.png",
"size": 64
},
{
"light": "icons/icon-dark-128.png",
"dark": "icons/icon-128.png",
"size": 128
}
]
},
"background": {
"scripts": [
"ui/compat.js",
"ui/common.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"ui/compat.js",
"ui/common.js",
"content_scripts/content-script.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "extract-data@pdulvp"
}
}
}