Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Transparency
- // @namespace http://tampermonkey.net/
- // @version 2025-06-25
- // @description try to take over the world!
- // @author You
- // @match https://orteil.dashnet.org/cookieclicker/
- // @icon https://www.google.com/s2/favicons?sz=64&domain=dashnet.org
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- const style = document.createElement('style');
- style.textContent = `
- * {
- -webkit-tap-highlight-color: transparent;
- user-select: none;
- }
- `;
- document.head.appendChild(style);
- })();
Advertisement
Add Comment
Please, Sign In to add comment