Skip to content

Commit

Permalink
this fixes gorhill/uMatrix#234
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed May 30, 2015
1 parent 103bb9c commit e65c293
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions platform/chromium/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
},
"permissions": [
"contextMenus",
"privacy",
"storage",
"tabs",
"unlimitedStorage",
Expand Down
7 changes: 7 additions & 0 deletions platform/chromium/vapi-background.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ var noopFunc = function(){};

/******************************************************************************/

// https://github.com/gorhill/uMatrix/issues/234
// https://developer.chrome.com/extensions/privacy#property-network

chrome.privacy.network.networkPredictionEnabled.set({ value: false });

/******************************************************************************/

vAPI.app = {
name: manifest.name,
version: manifest.version
Expand Down

3 comments on commit e65c293

@gblazex
Copy link

@gblazex gblazex commented on e65c293 Jun 1, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be optional!

@sprt
Copy link

@sprt sprt commented on e65c293 Jun 1, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, prefetching is useful

@gorhill
Copy link
Owner Author

@gorhill gorhill commented on e65c293 Jun 1, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in #274.

Please sign in to comment.