Skip to content

Instantly share code, notes, and snippets.

@dacioromero
Last active October 29, 2020 19:52
Show Gist options
  • Save dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a to your computer and use it in GitHub Desktop.
Save dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a to your computer and use it in GitHub Desktop.
Fuck It!
// ==UserScript==
// @name Fuck It! jQuery
// @namespace https://gist.github.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a
// @description jQuery injector for your jQuery addiction
// @author Dacio Romero <[email protected]>
// @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