mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fix DNR output in uBO's dev tools page
This commit is contained in:
parent
db16dfbfbc
commit
b35d17143b
1 changed files with 5 additions and 1 deletions
|
|
@ -160,7 +160,11 @@ const onMessage = function(request, sender, callback) {
|
|||
);
|
||||
}
|
||||
const options = {
|
||||
extensionPaths: redirectEngine.getResourceDetails(),
|
||||
extensionPaths: redirectEngine.getResourceDetails().filter(e =>
|
||||
typeof e[1].extensionPath === 'string' && e[1].extensionPath !== ''
|
||||
).map(e =>
|
||||
[ e[0], e[1].extensionPath ]
|
||||
),
|
||||
env: vAPI.webextFlavor.env,
|
||||
};
|
||||
const t0 = Date.now();
|
||||
|
|
|
|||
Loading…
Reference in a new issue