-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (32 loc) · 930 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
{
"name": "Miner Detector",
"manifest_version": 2,
"version": "0.3",
"background": {
"scripts": [
"./src/background.js"
]
},
"description": "Detects monero coin-hive.com miner scripts on websites and let's you know in the url bar",
"author": "Alexander Sadovsky",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./src/contentScriptDetector.js"
],
"run_at": "document_end"
}
],
"page_action": {
"default_icon": "./src/icon.png"
},
"icons": {
"16": "./src/icon-16.png",
"32": "./src/icon.png",
"64": "./src/icon-64.png",
"128": "./src/icon-128.png"
}
}