-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (38 loc) · 955 Bytes
/
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
{
"manifest_version": 3,
"name": "Sort by price per unit - Maltasupermarket.com",
"version": "0.0.0",
"description": "Enables the ability to sort by price per unit on maltasupermarket.com",
"icons": {
"16": "16x16.png",
"48": "48x48.png",
"128": "128x128.png"
},
"action": {
"default_icon": {
"24": "24x24.png",
"32": "32x32.png"
},
"default_title": "Sort by price per unit - Maltasupermarket.com",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*.maltasupermarket.com/*",
"*://maltasupermarket.com/*"
],
"js": [
"in-content.js"
]
}
],
"offline_enabled": true,
"permissions": [
"tabs",
"storage"
]
}