Split fbclid when open link from facebook
目前為
// ==UserScript==
// @name Split fbclid
// @namespace https://www.facebook.com/dung.dev.gramer/
// @version 0.1
// @description Split fbclid when open link from facebook
// @author DungGramer
// @include /((https|http)%)/
// @grant none
// ==/UserScript==
(function() {
let newURL = window.location.href.split(/((&fbclid=\w+)|(fbclid=\w+))(-\w+|)/);
window.location = decodeURIComponent(newURL[0] + newURL[newURL.length - 1]);
})();