mirror of https://github.com/gorhill/uBlock.git
Add no-floc scriptlet
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1553
This commit is contained in:
parent
7bf9a83d8e
commit
5a48917b80
|
@ -665,6 +665,18 @@
|
|||
})();
|
||||
|
||||
|
||||
/// no-floc.js
|
||||
// https://github.com/uBlockOrigin/uBlock-issues/issues/1553
|
||||
(function() {
|
||||
if ( document.interestCohort instanceof Function === false ) { return; }
|
||||
document.interestCohort = new Proxy(document.interestCohort, {
|
||||
apply: function() {
|
||||
return Promise.reject();
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
||||
|
||||
/// remove-attr.js
|
||||
/// alias ra.js
|
||||
(function() {
|
||||
|
|
Loading…
Reference in New Issue