mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-16 23:42:39 +01:00
this fixes https://github.com/gorhill/uBlock/issues/135 and #1329
This commit is contained in:
parent
128e7bf9ff
commit
da9aaf73e1
@ -71,9 +71,11 @@ return {
|
|||||||
netWhitelist: {},
|
netWhitelist: {},
|
||||||
netWhitelistModifyTime: 0,
|
netWhitelistModifyTime: 0,
|
||||||
netWhitelistDefault: [
|
netWhitelistDefault: [
|
||||||
|
'about-scheme',
|
||||||
'behind-the-scene',
|
'behind-the-scene',
|
||||||
'chrome-extension-scheme',
|
'chrome-extension-scheme',
|
||||||
'chrome-scheme',
|
'chrome-scheme',
|
||||||
|
'loopconversation.about-scheme',
|
||||||
'opera-scheme'
|
'opera-scheme'
|
||||||
].join('\n').trim(),
|
].join('\n').trim(),
|
||||||
|
|
||||||
|
@ -81,6 +81,16 @@ var onVersionReady = function(lastVersion) {
|
|||||||
);
|
);
|
||||||
µb.saveWhitelist();
|
µ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.3.5') <= 0 ) {
|
||||||
|
µb.netWhitelist = µb.whitelistFromString(
|
||||||
|
µb.stringFromWhitelist(µb.netWhitelist) +
|
||||||
|
'\n' +
|
||||||
|
'loopconversation.about-scheme'
|
||||||
|
);
|
||||||
|
µb.saveWhitelist();
|
||||||
|
}
|
||||||
if ( lastVersion !== vAPI.app.version ) {
|
if ( lastVersion !== vAPI.app.version ) {
|
||||||
vAPI.storage.set({ version: vAPI.app.version });
|
vAPI.storage.set({ version: vAPI.app.version });
|
||||||
}
|
}
|
||||||
|
@ -55,13 +55,15 @@ var µb = µBlock;
|
|||||||
return uri.normalizedURI();
|
return uri.normalizedURI();
|
||||||
}
|
}
|
||||||
|
|
||||||
var url = 'http://' + scheme + '-scheme/';
|
var fakeHostname = scheme + '-scheme';
|
||||||
|
|
||||||
if ( uri.hostname !== '' ) {
|
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 + '/';
|
||||||
};
|
};
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user