-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
39 lines (39 loc) · 1.06 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
34
35
36
37
38
39
{
"name": "Coin-Hive Blocker",
"description": "Removes Coin-Hive before it even runs on all sites",
"version": "0.9",
"permissions": [
"tabs",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking",
"https://raw.githubusercontent.com/andreas0607/CoinHive-blocker/master/*",
"system.cpu",
"notifications",
"*://docs.google.com/forms/d/1cB1urxRqau67pWoN5s1oSfUyi9t0G5T3dMT_txc-o3Q/*"
],
"icons": {
"128": "128logo.png"
},
"browser_action": {
"default_icon": "128logo.png"
},
"background": {
"scripts": ["bg.js"],
"persistent": true
},
"web_accessible_resources": ["popup.js","popup.html","donate.html","doante.js","ether.svg","steam.svg","bitcoin.png","paypal.png","profile.png"],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": ["remove.js"],
"run_at": "document_start",
"all_frames": true
}
],
"manifest_version":2
}