-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.24 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
{
"name": "Ornitho Decorator",
"description": "__MSG_extensionDescription__",
"version": "0.4.0",
"manifest_version": 3,
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"action": {
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://www.ornitho.pl/index.php?m_id=52&id=*",
"*://www.ornitho.de/index.php?m_id=52&id=*",
"*://www.ornitho.lu/index.php?m_id=52&id=*",
"*://www.ornitho.ch/index.php?m_id=52&id=*",
"*://www.ornitho.cat/index.php?m_id=52&id=*",
"*://www.ornitho.eus/index.php?m_id=52&id=*",
"*://www.ornitho.it/index.php?m_id=52&id=*",
"*://www.ornitho.at/index.php?m_id=52&id=*",
"*://www.ornitho.fr/index.php?m_id=52&id=*"
],
"js": [
"content/decorator.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"/images/copy16.png",
"/images/location16.png"
],
"matches": [
"<all_urls>"
]
}
],
"default_locale": "en"
}