mirror of https://github.com/gorhill/uBlock.git
This commit is contained in:
parent
4e1ba3b12a
commit
9ce1f8af08
|
@ -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:
|
||||
|
|
|
@ -484,6 +484,8 @@ RedirectEngine.prototype.resourcesFromString = function(text) {
|
|||
}
|
||||
|
||||
warResolve();
|
||||
|
||||
this.modifyTime = Date.now();
|
||||
};
|
||||
|
||||
/******************************************************************************/
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue