Desativar o redirecionamento do link do messenger do Facebook

1

Copiar um link no Facebook Messenger é uma dor, porque o Facebook adiciona lixo redirecionado a ele. Por exemplo:

https://l.messenger.com/l.php?u=https%3A%2F%2Fpastebin.com%2Fz3au8T2R&h=ATMDXb187CWsF4_H7J-8fClHEigqWDiV1f-764DDoX7LSfnyJC_pLNqWD0wzLPsLUgQP4bq-MwQ1pxsIEg7i8E3WOboUXiG2tWZkSPthU8ZRimfHooSMatcJYLnIRA6PkDsCCAYGZmQyLa1TgpK-xQ3VmwLutw

Existe uma maneira de remover todo esse lixo / lixo extra para que quando eu copiar links seja apenas o link:

https://pastebin.com/z3au8T2R

Eu tenho um script do Google Chrome Tampermonkey que faz algo semelhante para os links do Google, mas não consigo encontrar um para o mensageiro do Facebook.

Há algum pré-feito ou alguma maneira de fazer isso sozinho?

    
por Puffycheeses 21.09.2017 / 07:37

1 resposta

1

Eu mesmo descobri e criei um script do Tampermonkey para fazer isso. Código-fonte aqui , assim como abaixo:

// ==UserScript==
// @name         Remove Messenger Tracker
// @namespace    http://tampermonkey.net/
// @version      1.2
// @homepage     https://github.com/Puffycheeses/TamperMonkeyMessengerCleaner/
// @updateURL    https://github.com/Puffycheeses/TamperMonkeyMessengerCleaner/raw/master/Remove%20Messenger%20Tracker.user.js
// @description  Removes annoying Facebook Tracker
// @author       Puffycheeses
// @match        *://www.messenger.com/*
// @grant        none
// @require http://code.jquery.com/jquery-1.12.4.min.js
// ==/UserScript==
var i=0;
//var cleaned = 0; //For logging can ignore
var links = document.getElementsByTagName('a');
setInterval(function(){
    var links = document.getElementsByTagName('a');
    //console.log('Scanning for new links'); //Log that its actually working
}, 2500);
setInterval(function(){
    link = links[i];
    if(i < links.length) {
        if(link.href.includes('https://l.messenger.com/l.php?u=')){
            var rep = link.href;
            var ret = rep.replace("https://l.messenger.com/l.php?u=", "").replace(/%3A/g, ":").replace(/%2F/g, "/").replace(/%3F/g, "?").replace(/%3D/g, "=");
            var rek = ret.substring(0, ret.indexOf('&h='));
            //console.log(rek); //For displaying the found links
            link.href = rek;
            //cleaned += 1; //For displaying how many links were found
        }
    }
    if(i < links.length) {
        i+=1;
    } else {
        //if(cleaned > 0){ //This who section was to display how many links have been cleaned
        //    console.log(cleaned + ' Links found and cleaned');
        //}
        //cleaned = 0;
        i=0;
    }
}, 100);
    
por 10.10.2017 / 09:10