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 <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