Guest User

Untitled

a guest
Aug 28th, 2025
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Transparency
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-06-25
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://orteil.dashnet.org/cookieclicker/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=dashnet.org
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. const style = document.createElement('style');
  16. style.textContent = `
  17. * {
  18. -webkit-tap-highlight-color: transparent;
  19. user-select: none;
  20. }
  21. `;
  22. document.head.appendChild(style);
  23. })();
Advertisement
Add Comment
Please, Sign In to add comment