mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
experiment with fixes for #1461
This commit is contained in:
parent
1bc1c7d7b3
commit
49d9854e82
3 changed files with 28 additions and 6 deletions
|
@ -1,11 +1,11 @@
|
|||
dfc59bafa8ad38b61c33303824350b8c assets/ublock/unbreak.txt
|
||||
538211a2228745b51b615b1b245cf99e assets/ublock/unbreak.txt
|
||||
62111a29f0a5cb361ba8dbae92054adb assets/ublock/redirect-resources.txt
|
||||
94efb2d9c4bd436707c3923d64cb4f3b assets/ublock/privacy.txt
|
||||
d9fcd484d3b1be1954bcb9252048ca14 assets/ublock/filters.txt
|
||||
98088252cedafb8571cf61b91bea219e assets/ublock/badware.txt
|
||||
5baa90e2da7cd6a73edff2010557ee57 assets/ublock/redirect.txt
|
||||
b65ec581214a0d24dad6522a60f827ab assets/ublock/experimental.txt
|
||||
f96952a8e31a72e43e0f7755f6d8bcf1 assets/ublock/resources.txt
|
||||
feae904c1056c9bd3d1a45ff5dad1bda assets/ublock/resources.txt
|
||||
059e0bfbf22bd242dda7b07389fe09a2 assets/ublock/filter-lists.json
|
||||
3605c73f21abca428c7eb69a8bc32dfe assets/thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt
|
||||
a91af77c47c302c0741c7445b0fada1a assets/thirdparties/easylist-downloads.adblockplus.org/easylist.txt
|
||||
|
|
|
@ -814,3 +814,29 @@ disqus.com/embed.js application/javascript
|
|||
};
|
||||
b.addEventListener('click', loadDisqus);
|
||||
})();
|
||||
|
||||
|
||||
# https://github.com/gorhill/uBlock/issues/1461
|
||||
ytad-defuser.js application/javascript
|
||||
(function() {
|
||||
var ytp, ytpc;
|
||||
Object.defineProperty(window, 'ytplayer', {
|
||||
get: function() {
|
||||
return ytp;
|
||||
},
|
||||
set: function(a) {
|
||||
ytp = a;
|
||||
Object.defineProperty(ytp, 'config', {
|
||||
get: function() {
|
||||
return ytpc;
|
||||
},
|
||||
set: function(a) {
|
||||
ytpc = a;
|
||||
if ( a && a.args && typeof a.args.ad_slots === 'string' ) {
|
||||
a.args.ad_slots = a.args.ad_slots.replace(/0,?/, '');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
|
|
@ -266,7 +266,3 @@ phoronix.com#@#div[style^="text-align: center;"]
|
|||
|
||||
# https://forums.lanik.us/viewtopic.php?f=64&t=28701
|
||||
@@||files.explosm.net/files/$image,first-party
|
||||
|
||||
# https://github.com/gorhill/uBlock/issues/1461
|
||||
# Experimental fix
|
||||
@@||s.youtube.com^$domain=youtube.com
|
||||
|
|
Loading…
Reference in a new issue