mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-04 12:00:10 +00:00
Fix-update WSJ (snippet)
This commit is contained in:
parent
2732dd7fe5
commit
4974f8dfea
@ -121,9 +121,16 @@ else if (matchDomain("wsj.com")) {
|
||||
close_button.click();
|
||||
}
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
let wsj_login = document.querySelector('.wsj-snippet-login, .wsjpro-label');
|
||||
if (wsj_login) {
|
||||
window.location.href = window.location.href.replace('wsj.com', 'wsj.com/amp');
|
||||
let url = window.location.href;
|
||||
let snippet = document.querySelector('.snippet-promotion');
|
||||
if (snippet) {
|
||||
if (!window.location.hash) {
|
||||
if (url.includes('?')) {
|
||||
window.location.href = url.replace('?', '#refreshed?');
|
||||
} else
|
||||
window.location.href = url + '#refreshed';
|
||||
} else
|
||||
window.location.href = window.location.href.replace('wsj.com', 'wsj.com/amp').replace('#refreshed', '');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user