sjehuda / Newspaper

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;