Skip to content

Instantly share code, notes, and snippets.

@Diegiwg
Created March 19, 2025 11:56
Show Gist options
  • Save Diegiwg/a14e1a74597f49fabf8080b699c9676a to your computer and use it in GitHub Desktop.
Save Diegiwg/a14e1a74597f49fabf8080b699c9676a to your computer and use it in GitHub Desktop.
Load React Scan on Devopness APP
// ==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