-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
34 lines (34 loc) · 910 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
{
"manifest_version": 2,
"name": "Relative XPath Helper",
"version": "1.2.7",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"description": "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!",
"background": {
"page": "relxpathbackground.html"
},
"browser_action": {
"default_icon": {
"19": "static/icon_19x19.png",
"38": "static/icon_38x38.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["relxpathcontent.css"],
"js": ["relxpathcontent.js"]
}
],
"icons": {
"16": "static/icon_16x16.png",
"32": "static/icon_32x32.png",
"48": "static/icon_48x48.png",
"128": "static/icon_128x128.png"
},
"web_accessible_resources": [
"relxpathpopup.css",
"relxpathpopup.html",
"relxpathpopup.js"
]
}