diff --git a/background.js b/background.js index 2849105e..d3868a6b 100644 --- a/background.js +++ b/background.js @@ -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); } }, { diff --git a/changelog.txt b/changelog.txt index 0b47da0c..8698a5c7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Firefox Post-release Add Italian.tech +Fix Medium (faster) * v2.4.4.0 (2021-11-14) Fix Nikkei Asian Review (cookies)