Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
Newspaper userscript shows Empty News Feed for http://status.hackerposse.com/api/statuses/user_timeline/1.atom
Not all entries are displayed for https://otter-browser.org/feed/
Fixed. We reverse back the following changes
--- /scripts/sjehuda/Newspaper/source@1.0.2+e8feeb3 +++ /scripts/sjehuda/Newspaper/source @@ -10,8 +10,8 @@ // @include * -// @version 1.0.2 -// @run-at document-start +// @version 1.0.3 +// @run-at document-end // ==/UserScript== // NOTE @@ -65,7 +65,7 @@ function httpGetAsync(uri, callback) { var xmlHTTPRequest = new XMLHttpRequest(); xmlHTTPRequest.onreadystatechange = function() { - if (xmlHTTPRequest.readyState === 3) { + if (xmlHTTPRequest.readyState === 4) { xmlFile = xmlHTTPRequest.responseText; if (document.URL.startsWith('file:')) { mimeType = document.contentType;