Greasy Fork is available in English.

The Wall Street Journal CN site Full Text Articles

Fetch the full text of The Wall Street Journal articles from the AMP version. I've identified an issue affecting iOS Safari users while reading articles on wsj.com. The font size may appear too large. As a temporary workaround, please use the font adjustment tool in the Safari address bar to increase or decrease the font size, then reset it to the original size. This should fix the issue. This bug is not present on cn.wsj.com. Thank you for your cooperation and understanding.

< Feedback on The Wall Street Journal CN site Full Text Articles

Question/comment

§
Posted: 20.5.2024

每篇文章的第一张图片会被隐藏,请检查,谢谢!

§
Posted: 13.6.2024

大佬可能暫時沒有時間處理

dkf
§
Posted: 13.7.2024

$preview.replaceWith(data.find('section[subscriptions-section="content"]')
.css('margin-bottom', '5rem')
.css('color', 'var(--primary-text-color)')
.css('font-family', 'var(--article-font-family)')
.css('font-weight', 'var(--article-font-weight)')
.css('line-height', 'calc(27 / 17)')
.css('direction', 'var(--article-direction);')
.prepend($preview.children('div[data-type="image"]')) <===添加这行
);

dkf
§
Posted: 26.7.2024

修改下以支持视频,同时去除残留的广告位

$preview.replaceWith(data.find('section[subscriptions-section="content"]')
.css('margin-bottom', '5rem')
.css('color', 'var(--primary-text-color)')
.css('font-family', 'var(--article-font-family)')
.css('font-weight', 'var(--article-font-weight)')
.css('line-height', 'calc(27 / 17)')
.css('direction', 'var(--article-direction);')
.prepend($preview.children('div.media-layout'))
);
$body.find('.wsj-ad').remove();

Post reply

Sign in to post a reply.