ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > DC Member Programs and Projects

Unping all the links!

<< < (3/4) > >>

4wd:
If you use (Grease|Tamper|Violent)Monkey then there's also Disable Hyperlink Auditing which just removes the ping attribute from the tags.


--- Code: Javascript ---// ==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");    });})();

Tuxman:
That's what my extension does, but with less "first you'll have to install this other extension".

4wd:
That's what my extension does, but with less "first you'll have to install this other extension".-Tuxman (April 20, 2019, 10:02 AM)
--- End quote ---

Still, an alternative if you already run (x)Monkey with userscripts already.

nickodemos:
Still, an alternative if you already run (x)Monkey with userscripts already.
-4wd (April 20, 2019, 10:52 AM)
--- End quote ---

Kinda how I feel since I use a Monkey clone as well. You should make one for FF as there are many people who do not use scripts.

Tuxman:
Once Firefox disables it, I will.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version