Disable Hyperlink Auditing

A simple script that removes hyperlink auditing from all websites.

Version au 08/04/2019. Voir la dernière version.

// ==UserScript==
// @name         Disable Hyperlink Auditing
// @namespace    https://tech.jacenboy.com/hyperlink-auditing
// @version      1.0
// @description  A simple script that removes hyperlink auditing from all websites.
// @author       JacenBoy
// @match        http*://*/*
// @grant        none
// @run-at document-end
// ==/UserScript==

(function() {
    'use strict';

    var hyperlinks = Array.from(document.getElementsByTagName("a"));
    hyperlinks.forEach(a => {
        a.removeAttribute("ping");
    });
})();