Fix Harvard Business Review (script)

merge-requests/17/head
magnolia1234 6 months ago
parent d99bbcbc38
commit 225a56c7df

@ -44,7 +44,9 @@ For new sites you also have to opt-in to custom sites/request host permissions f
Add-on was removed by Mozilla from [add-on store (AMO)](https://addons.mozilla.org).\
Current installations (by custom collection in Firefox Beta/Nightly or Firefox-fork) will stay active, but with no more updates.
Firefox-fork [Iceraven](https://github.com/fork-maintainers/iceraven-browser) v2.13.2+ can still install a xpi-file though (add-on updates automatically).\
[Firefox Nightly 122+](https://play.google.com/store/apps/details?id=org.mozilla.fenix) can still install/sideload a xpi-file (manual updates) when you enable the debug menu (settings > about > click Firefox logo 5 times > return to settings).
Or use the Firefox-fork [Iceraven](https://github.com/fork-maintainers/iceraven-browser) v2.13.2+ (manual updates).\
You can install/update Iceraven manually or use the app [FFUpdater](https://github.com/Tobi823/ffupdater)
The experimental Mozac/GeckoView-based browser [SmartCookieWeb-Preview](https://github.com/CookieJarApps/SmartCookieWeb-Preview/releases) can also install/sideload a xpi-file by url (Settings > Advanced settings > Sideload XPI).
@ -66,6 +68,8 @@ Visit the [Chrome repository](https://gitlab.com/magnolia1234/bypass-paywalls-ch
#### iOS/iPadOS
Use adblocker with custom (content)filter & userscript (manager): https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters (read instructions).
Although [Orion Browser](https://apps.apple.com/us/app/orion-browser-by-kagi/id1484498200) supports installing this add-on, it won't work for a lot of sites (no full support of WebExtensions API on iOS/iPadOS).
### Troubleshooting
* If a site doesn't work, first try to turn off your adblocker (or other extension) and refresh page.
* Make sure the (new) site is checked under Options.

@ -4,6 +4,7 @@ Updates (install signed xpi-file): https://gitlab.com/magnolia1234/bypass-paywal
Post-release
Fix Automobilwoche.de (js)
Fix Harvard Business Review (script)
* v3.4.7.0 (2023-12-14)
Add Die Presse (at)

@ -658,6 +658,8 @@ else if (matchDomain('augsburger-allgemeine.de')) {
} else {
amp_unhide_subscr_section();
}
let banners = document.querySelectorAll('div.piano-article');
hideDOMElement(...banners);
}
else if (matchDomain('automobilwoche.de')) {
@ -4037,7 +4039,7 @@ else if (matchDomain('hbr.org')) {
}
let popup = document.querySelector('.persistent-banner');
removeDOMElement(popup);
let paywall = document.querySelector('site-paywall');
let paywall = document.querySelector('div#paywall');
if (paywall) {
removeDOMElement(paywall);
insert_script(hbr_main);

@ -51,5 +51,5 @@
"webRequestBlocking",
"*://*/*"
],
"version": "3.4.7.1"
"version": "3.4.7.2"
}

@ -822,5 +822,5 @@
"*://archive.vn/*",
"*://webcache.googleusercontent.com/*"
],
"version": "3.4.7.1"
"version": "3.4.7.2"
}

Loading…
Cancel
Save