-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 1.3 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
{
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"19": "static/icon_19x19.png",
"38": "static/icon_38x38.png"
},
"default_popup": "popup/popup.html"
},
"content_scripts": [ {
"css": ["utils/element-ui/index.css", "content/content.css" ],
"js": [ "utils/vue.js", "utils/element-ui/index.js", "utils/qs.min.js", "utils/axios.min.js", "utils/react.js" , "utils/react-dom.js", "utils/react-json-view.min.js", "content/content-prepare.js", "content/content.js" ],
"matches": [ "\u003Call_urls>" ]
} ],
"description": "Extract, edit, and evaluate XPath queries with ease.",
"icons": {
"128": "static/icon_128x128.png",
"16": "static/icon_16x16.png",
"32": "static/icon_32x32.png",
"48": "static/icon_48x48.png"
},
"permissions": [
"tabs"
],
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDGn13W8gagw81OGixwgoOt8Nf+F70E9iVghrvge7/ajfbEUsf8avKiWcyopV8yHEjZAnIsUys+k939m0QBBuOb3Ba/skyjooFHgljHbnALMuPzINPhUEk+wuxHWbMiFMSd1w+Bulh6E19BLk2xR31uEKdZTWvKFcaCYKmXN6qkbwIDAQAB",
"manifest_version": 2,
"name": "XPath Helper",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "2.0.2",
"web_accessible_resources": []
}