Raymond Hill 2018-03-19 10:25:03 -04:00
parent 4e1ba3b12a
commit 9ce1f8af08
No known key found for this signature in database
GPG key ID: 25E1490B761470C2
3 changed files with 18 additions and 2 deletions

View file

@ -990,8 +990,7 @@ var onMessage = function(request, sender, callback) {
break;
case 'writeHiddenSettings':
µb.hiddenSettings = µb.hiddenSettingsFromString(request.content);
µb.saveHiddenSettings();
µb.changeHiddenSettings(µb.hiddenSettingsFromString(request.content));
break;
default:

View file

@ -484,6 +484,8 @@ RedirectEngine.prototype.resourcesFromString = function(text) {
}
warResolve();
this.modifyTime = Date.now();
};
/******************************************************************************/

View file

@ -379,6 +379,21 @@ var matchBucket = function(url, hostname, bucket, start) {
/******************************************************************************/
// https://www.reddit.com/r/uBlockOrigin/comments/8524cf/my_custom_scriptlets_doesnt_work_what_am_i_doing/
µBlock.changeHiddenSettings = function(hs) {
var mustReloadResources =
hs.userResourcesLocation !== this.hiddenSettings.userResourcesLocation;
this.hiddenSettings = hs;
this.saveHiddenSettings();
if ( mustReloadResources ) {
this.redirectEngine.invalidateResourcesSelfie();
this.loadRedirectResources();
}
};
/******************************************************************************/
µBlock.elementPickerExec = function(tabId, targetElement, zap) {
if ( vAPI.isBehindTheSceneTabId(tabId) ) {
return;