-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 885 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 885 Bytes
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
{
"name": "Spy",
"manifest_version": 2,
"version": "0.74",
"description": "This extension allows you to quickly see a DOM element's attributes by simply hovering your mouse over it inside your browser.",
"icons": {
"16": "public/icon/eno-logo-128.png",
"48": "public/icon/eno-logo-128.png",
"128": "public/icon/eno-logo-128.png"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"dist/axios.min.js",
"dist/index.dev.js"
]
}
],
"browser_action": {
"default_title": "",
"default_icon": {
"16": "public/icon/eno-logo-128.png",
"48": "public/icon/eno-logo-128.png",
"128": "public/icon/eno-logo-128.png"
}
}
}