Jump to content

Harristribe

Level 1
  • Posts

    2
  • Joined

  • Last visited

Everything posted by Harristribe

  1. Ironically as the original poster of this solution I have since moved on from Evernote (and believe me I’ve tried them all – including Keep). I’ve finally settled on a good compromise in the form of Joplin (https://joplinapp.org/). Joplin is an open source Evernote replacement that does indeed support Markdown. It doesn’t do everything that Evernote does (for example you can have nested Notebooks but not nested tag hierarchies) however it can be installed or run standalone (off a usb stick etc.), can sync to a simple folder location (I use google drive to sync between computer) and supports client side encryption (so google can’t see what’s inside your notes) – oh and its free 😊 May not work for your individual needs but definitely worth giving it a try. Rob
  2. 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: Install a Google Chrome extension called TamperMonkey (https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo/related) Open up the TamperMonkey settings (Left click on the new icon shown top right in chrome) 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
×
×
  • Create New...