Fix Medium (faster)

master
magnolia1234 2021-11-16 18:00:45 +01:00
parent 288d5cc26c
commit 08bf2606c3
2 changed files with 5 additions and 1 deletions

View File

@ -1135,7 +1135,10 @@ function remove_cookies_fn(domainVar, exclusions = false) {
// remove cookies after page load
ext_api.webRequest.onCompleted.addListener(function (details) {
let domainVar = matchUrlDomain(remove_cookies, details.url);
if (domainVar && ['main_frame', 'sub_frame', 'xmlhttprequest', 'other'].includes(details.type) && enabledSites.includes(domainVar)) {
let types = ['main_frame', 'sub_frame', 'xmlhttprequest', 'other'];
if (domainVar === 'medium.com')
types = ['main_frame', 'image'];
if (domainVar && types.includes(details.type) && enabledSites.includes(domainVar)) {
remove_cookies_fn(domainVar, true);
}
}, {

View File

@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Chrome
Post-release
Add Italian.tech
Fix Medium (faster)
* v2.4.4.0 (2021-11-14)
Fix Nikkei Asian Review (cookies)