Skip to content

Instantly share code, notes, and snippets.

@lcandy2
Created March 16, 2024 07:15
Show Gist options
  • Select an option

  • Save lcandy2/925d68342ac706470251cbec82d37adb to your computer and use it in GitHub Desktop.

Select an option

Save lcandy2/925d68342ac706470251cbec82d37adb to your computer and use it in GitHub Desktop.
Fix modified browser native function.
// ==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