Skip to content
This repository was archived by the owner on Nov 15, 2017. It is now read-only.

Commit ac140f7

Browse files
committed
this fixes #389
1 parent d60be20 commit ac140f7

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

assets/httpsb/ubiquitous-block-lists.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"title": "MVPS HOSTS"
2222
},
2323
"spam404bl.com/spam404scamlist.txt": {
24+
"off": true,
2425
"title": "Spam404"
2526
},
2627
"easylist-downloads.adblockplus.org/easylist.txt": {

js/background.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ var HTTPSB = (function() {
2929

3030
var defaultUserAgentStrings = [
3131
'# http://www.useragentstring.com/pages/Chrome/',
32-
'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36',
3332
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36',
3433
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36',
3534
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36',

js/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var onInstalledHandler = function(details) {
3131
if ( details.reason !== 'install' ) {
3232
return;
3333
}
34-
HTTPSB.utils.gotoExtensionURL('setup.html');
34+
// HTTPSB.utils.gotoExtensionURL('setup.html');
3535
};
3636

3737
chrome.runtime.onInstalled.addListener(onInstalledHandler);

js/storage.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,7 @@ HTTPSB.loadScopedRules = function() {
103103
}
104104
} else {
105105
// Sensible defaults
106-
httpsb.whitelistTemporarily('*', 'stylesheet', '*');
107-
httpsb.whitelistTemporarily('*', 'image', '*');
108-
httpsb.blacklistTemporarily('*', 'sub_frame', '*');
106+
httpsb.whitelistTemporarily('*', '*', '*');
109107
httpsb.createTemporaryScopeFromScopeKey(httpsb.behindTheSceneScopeKey);
110108
httpsb.whitelistTemporarily(httpsb.behindTheSceneScopeKey, '*', '*');
111109
httpsb.toggleTemporaryMtxFiltering(httpsb.behindTheSceneScopeKey, false);

0 commit comments

Comments
 (0)