mrgoerend 89 Posted September 6, 2012 Share Posted September 6, 2012 Here's what I get: http://www.evernote....dfc26014e1500c3Any ideas? Link to comment
jbignert 473 Posted September 7, 2012 Share Posted September 7, 2012 Hi mrgoerend,Please try the following:1) make sure you are on the latest Chrome Browser version 21.2) If you just installed the Clipper try restarting Chrome.3) If it doesn't resolve itself please try uninstalling and then re-install from here: https://chrome.google.com/webstore/detail/pioclpoplcdbaefihamjohnefbikjilc?hl=en-US&utm_source=chrome-ntp-launcher Link to comment
mrgoerend 89 Posted September 7, 2012 Author Share Posted September 7, 2012 Hi mrgoerend,Please try the following:1) make sure you are on the latest Chrome Browser version 21.2) If you just installed the Clipper try restarting Chrome.3) If it doesn't resolve itself please try uninstalling and then re-install from here: https://chrome.googl...me-ntp-launcherThanks for the reply. I did all of those things before posting. Still getting the same issue. Link to comment
altbog 0 Posted September 8, 2012 Share Posted September 8, 2012 I have same problem in Chomium 18 + Ubuntu 11.10.I tried to restart browser and reinstall add-on but it didn't help me.What can you offer me to do? Link to comment
kmslogic 3 Posted September 17, 2012 Share Posted September 17, 2012 I'm having the same issue--current update of Chrome 21 stable on Windows 7 64-bit. The clipper works on Chrome Canary Link to comment
kmslogic 3 Posted September 19, 2012 Share Posted September 19, 2012 The problem seems to be that the following code is duplicated in the extension's extension.js file:function msgHandlerSetLastNotebook(request, sender, sendResponse) { var username = request.username; var notebookGuid = request.notebook; var rn = Persistent.get(recentNotebooksKey); if (!rn) rn = {}; if (!username) username = "default"; rn[username] = notebookGuid; Persistent.set(recentNotebooksKey, rn); } function msgHandlerClipContentTooBig(request, sender, sendResponse) { alert(Browser.i18n.getMessage("fullPageClipTooBig")); if (sendResponse) sendResponse(); };If you comment one of these out by putting /* and */ around the code (this block appears twice), exit chrome and reload the extension will work. You can find this file on your computer in in C:\AppData\Local\Google\Chrome\User Data\Default\Extensions\xxx\5.7_0\js\main\ replacing the 'xxx' with the extension ID for the Evernote clipper found in >Tools>Extensions in chromeCome on Evernote guys let's fix this! Link to comment
altbog 0 Posted September 20, 2012 Share Posted September 20, 2012 Thank you for four answer. I try to do it! Link to comment
jbignert 473 Posted September 20, 2012 Share Posted September 20, 2012 HI all, just want to acknowledge that we are looking into this issue. So far we have not been able to reproduce it. If anyone affected by this can PM me a log from the Web Clipper that may help us. Thx. Link to comment
altbog 0 Posted September 24, 2012 Share Posted September 24, 2012 Unfortunately, the kmslogic's approach is not working in my browser. I've commented this functions but WebClipper is not working properly. Where can I find logs of this extension in Ubuntu? Link to comment
Marco_Liu 0 Posted September 26, 2012 Share Posted September 26, 2012 The problem seems to be that the following code is duplicated in the extension's extension.js file:function msgHandlerSetLastNotebook(request, sender, sendResponse) { var username = request.username; var notebookGuid = request.notebook; var rn = Persistent.get(recentNotebooksKey); if (!rn) rn = {}; if (!username) username = "default"; rn[username] = notebookGuid; Persistent.set(recentNotebooksKey, rn); } function msgHandlerClipContentTooBig(request, sender, sendResponse) { alert(Browser.i18n.getMessage("fullPageClipTooBig")); if (sendResponse) sendResponse(); };If you comment one of these out by putting /* and */ around the code (this block appears twice), exit chrome and reload the extension will work. You can find this file on your computer in in C:\AppData\Local\Google\Chrome\User Data\Default\Extensions\xxx\5.7_0\js\main\ replacing the 'xxx' with the extension ID for the Evernote clipper found in >Tools>Extensions in chromeCome on Evernote guys let's fix this!Thanks, kmslogic.This approach works. Link to comment
kmslogic 3 Posted November 2, 2012 Share Posted November 2, 2012 Evernote updated the clipper with the 5.8 version on my machine, but this issue persists--the extension for my system is C:\Users\KMS\AppData\Local\Google\Chrome\User Data\Default\Extensions\pioclpoplcdbaefihamjohnefbikjilc\5.8_0\js\main\extension.jsand the two functions I mentioned earlier in this thread are duplicated. Removing one copy of both of the functions while chrome is closed and then re-opening chrome fixes this. I'm really curious what's causing this to happen for some people and not for others. Link to comment
cchan 8 Posted November 3, 2012 Share Posted November 3, 2012 We know why it's happening on Ubuntu, but can't reproduce it on Windows. Can you show the browser's console logs? There are three logs to look for:1) Go to Chrome's menu --> Tools --> JavaScript Console2) Right-click on the Web Clipper popup (the one that is not fully loading), choose Inspect Element in the menu, then click on Console.3) Go to Chrome's menu --> Tools --> Extensions. In the entry for Web Clipper, you should see "Inspect views" with the link "_generated_background_page.html". Click on that link, then on Console. Link to comment
altbog 0 Posted November 7, 2012 Share Posted November 7, 2012 I just did all that cchan had offered. There is the console log:Uncaught TypeError: Cannot call method 'addListener' of undefined Browser.js:116Browser.addMessageHandlers Browser.js:116Extension Extension.js:537(anonymous function) Link to comment
altbog 0 Posted November 7, 2012 Share Posted November 7, 2012 I'm trying to use 5.8 version Link to comment
cchan 8 Posted November 7, 2012 Share Posted November 7, 2012 I just did all that cchan had offered. There is the console log:Uncaught TypeError: Cannot call method 'addListener' of undefined Browser.js:116Browser.addMessageHandlers Browser.js:116Extension Extension.js:537(anonymous function)I think there are two separate problems here. The problem you're having is because you're using an old version of Chrome (you said you were on Chrome 18). Please upgrade to Chrome 21, 22, or 23. The other problem is what kmslogic had, which we can't reproduce. Link to comment
gilsofuy 0 Posted November 9, 2012 Share Posted November 9, 2012 Dear cchan:Many thanks for your assistance. Here are the three screenshots of the Chrome consoles : https://www.dropbox.com/sh/5y3850w19qd9849/KOqWXRhChqMy Chrome version is 24.0.1312.5 dev-m. Link to comment
cchan 8 Posted November 9, 2012 Share Posted November 9, 2012 Thank you for the screenshots! They helped us figure out why this was happening to some people but not everyone. It only breaks if you have Chrome's experimental javascript enabled. We will fix this in our side in the next release. Until then, you have two separate options:1) kmslogic's solution2) disable experimental javascript. Go to "chrome://flags", look for "Enable Experimental JavaScript" and click "Disable". Link to comment
gilsofuy 0 Posted November 9, 2012 Share Posted November 9, 2012 Dear cchan: Victory! Resetting the flag about experimental Javascript did the trick nicely.Many, many thanks for your help!gilsofuy Link to comment
sergh 0 Posted November 14, 2012 Share Posted November 14, 2012 I have the same problem. My Chrome version is 23.0.1271.64 m. Experimental javascript is disabled. Browser's console logs are in the attachments to this post. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.