Jump to content

warning links


Recommended Posts

мне долго ответ ждать? что за полудурки, создали и сами не знают как это работает. обновляют только хуйню ой смотрите как у нас стал поиск работать,  который нахуй ненужен в заметках, новые алгоритмы неебические искуственный интелект там теперь ищет, блядь как поиск можно улучшить в тексте если он априори работает с появления текстовиков в 70х и всегда работал одинакого, он не может быть улучшен в текстовых файлах. а чтоб нужное что то делать, это не надо! говно убирать очевидное, флуд предупреждений о переходе по ссылкам нет такие функции им не нужно улучшать. 

Link to comment

If you have a mouse with a middle button you can click the links with that. It sort of executes a "Open link in new tab" action which bypasses this warning screen.

I know this doesn't fix the problem, but until Evernote removes this lame "feature" it's the only thing we have.

  • Thanks 1
Link to comment
  • 1 year later...

Hello!
You can use this tampermonkey custom script to remove confirmation of the transition to an external link from the web evernote.com.

// ==UserScript==
// @name         Evernote auto outbound redirect
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Removes confirmation of the transition to an external link from the web evernote.com
// @author       https://github.com/fosemberg
// @match        https://www.evernote.com/OutboundRedirect.action*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=evernote.com
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';
    const params = new Proxy(new URLSearchParams(window.location.search), {
        get: (searchParams, prop) => searchParams.get(prop),
    });
    document.location.href = params.dest;
})();


https://github.com/fosemberg/custom-js-for-sites/blob/master/evernote_com_auto_outbound_redirect.js

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...