mirror of https://github.com/gorhill/uBlock.git
forgot to add "ws://*/*"/"wss://*/*" to enable support for websocket type"
This commit is contained in:
parent
c271fbbd0d
commit
2213b005a0
|
@ -55,7 +55,9 @@
|
|||
"webRequest",
|
||||
"webRequestBlocking",
|
||||
"http://*/*",
|
||||
"https://*/*"
|
||||
"https://*/*",
|
||||
"ws://*/*",
|
||||
"wss://*/*"
|
||||
],
|
||||
"short_name": "uBlock₀",
|
||||
"storage": {
|
||||
|
|
|
@ -679,7 +679,9 @@ var headerIndexFromName = function(headerName, headers) {
|
|||
vAPI.net.onBeforeRequest = {
|
||||
urls: [
|
||||
'http://*/*',
|
||||
'https://*/*'
|
||||
'https://*/*',
|
||||
'ws://*/*',
|
||||
'wss://*/*'
|
||||
],
|
||||
extra: [ 'blocking' ],
|
||||
callback: onBeforeRequest
|
||||
|
|
Loading…
Reference in New Issue