diff --git a/background.js b/background.js index 408e401..ec13187 100644 --- a/background.js +++ b/background.js @@ -350,7 +350,7 @@ var blockedRegexes = { 'marketwatch.com': /(cdn\.cxense\.com\/|cdn\.ampproject\.org\/v\d\/amp-(access|ad)-.+\.js)/, 'mercuriovalpo.cl': /(.+\.mercuriovalpo\.cl\/impresa\/.+\/assets\/(vendor|\d)\.js|pram\.pasedigital\.cl\/API\/User\/Status\?)/, 'mexiconewsdaily.com': /\.mexiconewsdaily\.com\/c\/assets\/pigeon\.js/, - 'modernhealthcare.com': /\.tinypass\.com\//, + 'modernhealthcare.com': /(\.tinypass\.com\/|\.modernhealthcare\.com\/.+\/js\/js_.+\.js)/, 'nation.africa': /(\.evolok\.net\/|nation\.africa\/resource\/themes\/nation-.+\/js\/.+\.js)/, 'nationalgeographic.com': /\.blueconic\.net\//, 'nationalpost.com': /\.tinypass\.com\//, diff --git a/changelog.txt b/changelog.txt index 8d91f96..d953d37 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,7 @@ Changelog Bypass Paywalls Clean - Firefox Post-release +Fix-update Modern Healthcare * v2.2.3.0 (2021-05-30) Add Grupo Abril (Brazil) diff --git a/contentScript.js b/contentScript.js index eacbf2d..4494455 100644 --- a/contentScript.js +++ b/contentScript.js @@ -1704,7 +1704,7 @@ else if (matchDomain('cen.acs.org')) { }); } -else if (matchDomain('chicagobusiness.com')) { +else if (matchDomain(['chicagobusiness.com', 'modernhealthcare.com'])) { let body_hidden = document.querySelector('body[class]'); if (body_hidden) body_hidden.removeAttribute('class'); diff --git a/manifest.json b/manifest.json index c23c674..de2c0c4 100644 --- a/manifest.json +++ b/manifest.json @@ -520,5 +520,5 @@ "*://*.wallkit.net/*", "*://*.wsj.net/*" ], - "version": "2.2.3.0" + "version": "2.2.3.1" } \ No newline at end of file