Youtube|B站|反跟踪

Youtube|B站|反跟踪去除跟踪参数

  1. // ==UserScript==
  2. // @name Youtube|B站|反跟踪
  3. // @namespace http://tampermonkey.net/
  4. // @version 2023-12-18
  5. // @description Youtube|B站|反跟踪去除跟踪参数
  6. // @author Time
  7. // @match *://www.youtube.com/*
  8. // @match *://*.bilibili.com/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=gf.qytechs.cn
  10. // @grant GM.setClipboard
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. var config = {
  18. bilibili: {
  19. check: true,
  20. interval: null
  21. }
  22. };
  23.  
  24. // Your code here...
  25. function youtubeHandle() {
  26. setInterval(function () {
  27. var shareEle = document.getElementById("share-url");
  28. if (shareEle) {
  29. var shareUrl = document.getElementById("share-url").value;
  30. if (shareUrl) {
  31. var modifiedLink = shareUrl.replace(/\?.*/, "");
  32. console.log(modifiedLink);
  33. document.getElementById("share-url").value = modifiedLink;
  34. }
  35. }
  36. }, 500);
  37. }
  38. function bilibiliHandle() {
  39. config.bilibili.interval = setInterval(function () {
  40. var shareEle = document.getElementById("share-btn-inner");
  41. if (shareEle) {
  42. shareEle.addEventListener('click', function () {
  43. var shareUrl = window.location.href;
  44. var modifiedLink = shareUrl.replace(/\?.*/, "");
  45. console.log(modifiedLink);
  46. setTimeout(function () {
  47. GM.setClipboard(modifiedLink);
  48. }, 1000);
  49. });
  50. clearInterval(config.bilibili.interval);
  51. }
  52. }, 1000);
  53. }
  54. youtubeHandle();
  55. bilibiliHandle();
  56. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址