diff --git a/changelog.txt b/changelog.txt index 2a3a0f87..3f18ac5e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,6 +7,7 @@ Add Bild.de (fetch from archive.is) Add Capital.fr Fix MediaNews Group (ld_json_url) Fix Nzz.ch (css) +Fix Reuters (videos) Fix Seeking Alpha (refresh) * v3.6.2.0 (2024-04-01) diff --git a/contentScript.js b/contentScript.js index b38d1dd3..8371209b 100644 --- a/contentScript.js +++ b/contentScript.js @@ -5061,6 +5061,11 @@ else if (matchDomain('quora.com')) { }, 500); } +else if (matchDomain('reuters.com')) { + let ads = 'div[data-testid="ResponsiveAdSlot"], div[data-testid="Dianomi"]'; + hideDOMStyle(ads); +} + else if (matchDomain('rp.pl')) { let url = window.location.href; getGoogleWebcache(url, 'div.paywallComponentWrapper', '', 'div.main--content--body'); diff --git a/custom/manifest.json b/custom/manifest.json index 68ad7e96..b2c74f80 100644 --- a/custom/manifest.json +++ b/custom/manifest.json @@ -51,5 +51,5 @@ "webRequestBlocking", "*://*/*" ], - "version": "3.6.2.3" + "version": "3.6.2.4" } diff --git a/manifest.json b/manifest.json index 56a38dd7..dd91512e 100644 --- a/manifest.json +++ b/manifest.json @@ -868,5 +868,5 @@ "*://archive.vn/*", "*://webcache.googleusercontent.com/*" ], - "version": "3.6.2.3" + "version": "3.6.2.4" } diff --git a/sites.js b/sites.js index 3219c044..94249324 100644 --- a/sites.js +++ b/sites.js @@ -2069,7 +2069,7 @@ var defaultSites = { "Reuters": { domain: "reuters.com", allow_cookies: 1, - block_regex: /\.reuters\.com\/(arc\/subs\/p\.min|pf\/resources\/dist\/reuters\/js\/index)\.js/ + block_regex: /\.reuters\.com\/arc\/subs\/p\.min\.js/ }, "Revue Conflits": { domain: "revueconflits.com", diff --git a/sites_updated.json b/sites_updated.json index f2c4091a..0dc62a73 100644 --- a/sites_updated.json +++ b/sites_updated.json @@ -101,6 +101,12 @@ "ld_json": "div.FrsvM|div.story-element-text", "upd_version": "3.6.0.8" }, + "Reuters": { + "domain": "reuters.com", + "allow_cookies": 1, + "block_regex": "\\.reuters\\.com\\/arc\\/subs\\/p\\.min\\.js", + "upd_version": "3.6.2.4" + }, "The Banker (removed)": { "domain": "thebanker.com", "allow_cookies": 1,