Last active
October 29, 2020 19:52
-
-
Save dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a to your computer and use it in GitHub Desktop.
Fuck It!
This file contains 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 Fuck It! jQuery | |
// @namespace https://gist.github.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a | |
// @description jQuery injector for your jQuery addiction | |
// @author Dacio Romero <me@dacio.dev> | |
// @homepageURL https://gist.github.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a | |
// @run-at document-idle | |
// @match *://*/* | |
// @grant none | |
// @version 1.0.0 | |
// @updateURL https://gist.githubusercontent.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a/raw/fi-jquery.user.js | |
// @installURL https://gist.githubusercontent.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a/raw/fi-jquery.user.js | |
// @downloadURL https://gist.githubusercontent.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a/raw/fi-jquery.user.js | |
// ==/UserScript== | |
const script = document.createElement('script') | |
script.src = 'https://code.jquery.com/jquery-3.5.1.min.js' | |
script.async = true | |
document.body.appendChild(script) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment