Created
March 16, 2024 07:15
-
-
Save lcandy2/925d68342ac706470251cbec82d37adb to your computer and use it in GitHub Desktop.
Fix modified browser native function.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Fix modified browser native function. | |
| // @author lcandy2 | |
| // @namespace http://tampermonkey.net/ | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const script = document.createElement('script'); | |
| script.src = 'https://cdn.jsdelivr.net/npm/[email protected]/minified.min.js'; | |
| document.head.append(script); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment