-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.firefox.json
49 lines (49 loc) · 1.08 KB
/
manifest.firefox.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
{
"manifest_version": 3,
"name": "Next.js Explorer - NextJS App & Pages Router",
"description": "Quickly check if a webpage is built with Next.js and explore static properties and other related NextJS useful metrics.",
"version": "1.0.4",
"icons": {
"16": "public/images/icon-16.png",
"32": "public/images/icon-32.png",
"48": "public/images/icon-48.png",
"128": "public/images/icon-128.png"
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"popup.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"action": {
"default_title": "Click to explore Next.js page properties",
"default_icon": {
"16": "public/images/icon-16.png",
"32": "public/images/icon-32.png",
"48": "public/images/icon-48.png",
"128": "public/images/icon-128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "bitqat@gmail.com"
}
}
}