Created
March 19, 2025 11:56
-
-
Save Diegiwg/a14e1a74597f49fabf8080b699c9676a to your computer and use it in GitHub Desktop.
Load React Scan on Devopness APP
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 Load React Scan | |
// @namespace - | |
// @version 1.0.0 | |
// @description Load React Scan on Devopness APP | |
// @author Diegiwg | |
// @match https://*app.devopness.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=devopness.com | |
// @run-at document-start | |
// @grant GM_addElement | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addElement('script', { | |
src: 'https://unpkg.com/react-scan/dist/auto.global.js', | |
type: 'text/javascript' | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment