Jump to content

qwertier

Level 1
  • Posts

    2
  • Joined

  • Last visited

Posts posted by qwertier

  1. On 12/22/2016 at 1:16 PM, Harristribe said:

    Hi All,

    I too am very frustrated with this new *feature* and decided to find a work around until Evernote give us the option to disable this feature (although I suspect that they have introduced it to gather statistics so may never will).

    However, if like me you use Google Chrome this works quite well:

    1. Install a Google Chrome extension called TamperMonkey (https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo/related)
    2. Open up the TamperMonkey settings (Left click on the new icon shown top right in chrome)
    3. Create a new script and past in the code shown below (copy paste everything in blue)

    The TamperMonkey extension allows us to inject and run our own Javascript on page load. The @inlcude bit in the script below tells TamperMonkey to only run this script on any pages that have a URL that starts with https://www.evernote.com/OutboundRedirect.action. The script then grabs the target destination (i.e. the link we want to show) and tells the browser to immediately redirect there (bypassing the need to press evernotes continue button).

    // ==UserScript==
    // @name         Evernote Outbound Clicker
    // @namespace   http://harristribe.co.uk/
    // @version      1.0
    // @description  Avoids the evernote outbound page 
    // @author       Rob Harris
    // @include     https://www.evernote.com/OutboundRedirect.action*
    // @grant        none
    // @run-at       document-start
    // ==/UserScript==

    (function() {
        'use strict';

        var urlParams = new URLSearchParams(window.location.search);
        window.location.href = urlParams.get('dest');
    })();

     

    Hope that helps

    Rob

    Thank you, Rob! Also, I can confirm that your script's working flawlessly under Firefox 50 with Greasemonkey extension!

    But this solution fails if your work flow includes sending many notes with a lot of links to different people! But, thanks anyway! At least, it's a good fit for my personal use!

  2. There's absolutely no any logic in "You are leaving Evernote" tab feature! This feature is needed on forums where unknown member suggests to go to some links. In this case system could warn that you're leaving the forum and admins are not responsible for contents of those links!

    In case when you create a note and you paste links into the notes, it's meant that those links are 100% verified by you! You created a note, you found links and you pasted them into the note! Not somebody unknown!

    That's why "You are leaving Evernote" tab is absolutely useless for Evernote !

    • Like 6
×
×
  • Create New...