Skip to content

Instantly share code, notes, and snippets.

@DarcJC
Last active November 21, 2023 05:53
Show Gist options
  • Save DarcJC/25b365a8bfab7a0e6a400c101c076619 to your computer and use it in GitHub Desktop.
Save DarcJC/25b365a8bfab7a0e6a400c101c076619 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name NVPro sucks
// @namespace darc.pro
// @version 0.1
// @description Help fool nvidia nvpro sample load javascript file!
// @author DarcJC
// @match https://nvpro-samples.github.io/vk_raytracing_tutorial_KHR/
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.io
// @updateURL https://gist.githubusercontent.com/DarcJC/25b365a8bfab7a0e6a400c101c076619/raw
// @downloadURL https://gist.githubusercontent.com/DarcJC/25b365a8bfab7a0e6a400c101c076619/raw
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
let new_script = document.createElement("script");
new_script.type = "text/javascript";
new_script.src = "https://morgan3d.github.io/markdeep/latest/markdeep.min.js";
document.body.appendChild(new_script);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment