-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
71 lines (71 loc) · 1.67 KB
/
Copy pathmanifest.json
File metadata and controls
71 lines (71 loc) · 1.67 KB
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
{
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "nerd@cesnet.cz",
"strict_min_version": "140.0",
"data_collection_permissions": {
"required": ["browsingActivity"],
"has_previous_consent": false
}
},
"gecko_android": {
"strict_min_version": "142.0"
}
},
"name": "NERD IP info",
"description": "Detects IPv4 addresses on web pages, queries the CESNET NERD API, and displays results in an interactive popup.",
"version": "1.0.3",
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"storage",
"contextMenus",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": ["background/background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content/contentScript.js"],
"css": ["content/contentStyle.css"],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png"
}
},
"options_page": "options/options.html",
"web_accessible_resources": [
{
"resources": [
"icons/icon-16.png",
"icons/icon-32.png",
"icons/icon-48.png",
"icons/icon-128.png",
"icons/icon-gray.png",
"icons/icon-green.png",
"icons/icon-orange.png",
"icons/icon-red.png",
"icons/icon-purple.png"
],
"matches": ["<all_urls>"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}