1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 01:59:38 +02:00
This commit is contained in:
gorhill 2015-04-27 10:54:13 -04:00
parent 28fbda6607
commit 600fa2c3d9
3 changed files with 17 additions and 3 deletions

View File

@ -72,9 +72,11 @@ return {
netWhitelist: {},
netWhitelistModifyTime: 0,
netWhitelistDefault: [
'about-scheme',
'behind-the-scene',
'chrome-extension-scheme',
'chrome-scheme',
'loopconversation.about-scheme',
'opera-scheme',
''
].join('\n').trim(),

View File

@ -81,6 +81,16 @@ var onVersionReady = function(lastVersion) {
);
µb.saveWhitelist();
}
// https://github.com/gorhill/uBlock/issues/135#issuecomment-96677379
// `about:loopconversation` is used by Firefox for its Hello service
if ( lastVersion.localeCompare('0.9.5.2') < 0 ) {
µb.netWhitelist = µb.whitelistFromString(
µb.stringFromWhitelist(µb.netWhitelist) +
'\n' +
'loopconversation.about-scheme'
);
µb.saveWhitelist();
}
if ( lastVersion !== vAPI.app.version ) {
vAPI.storage.set({ version: vAPI.app.version });
}

View File

@ -55,13 +55,15 @@ var µb = µBlock;
return uri.normalizedURI();
}
var url = 'http://' + scheme + '-scheme/';
var fakeHostname = scheme + '-scheme';
if ( uri.hostname !== '' ) {
url += uri.hostname + '/';
fakeHostname = uri.hostname + '.' + fakeHostname;
} else if ( scheme === 'about' && uri.path !== '' ) {
fakeHostname = uri.path + '.' + fakeHostname;
}
return url;
return 'http://' + fakeHostname + '/';
};
/******************************************************************************/