-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
42 lines (41 loc) · 1.08 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
{
"manifest_version": 3,
"name": "MainWP Browser Extension",
"version": "1.0",
"description": "Stay informed by monitoring available updates and non-MainWP changes. Connects to your MainWP Dashboard via REST API.",
"icons": {
"128": "assets/images/mainwp128.png",
"64": "assets/images/mainwp64.png",
"16": "assets/images/mainwp32.png"
},
"browser_specific_settings": {
"gecko": {
"id": "support@mainwp.com",
"strict_min_version": "42.0"
}
},
"background": {
"scripts": ["background.js"],
"type": "module"
},
"action": {
"default_popup": "popup.html"
},
"permissions": [
"alarms",
"storage",
"unlimitedStorage",
"notifications"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/mainwp.js","js/toastr/toastr.js"],
"css":["css/style.css","js/toastr/toastr.css"]
}
],
"host_permissions": [
"<all_urls>",
"https://*/wp-json/mainwp/v1/sites/*"
]
}