Skip to content

Instantly share code, notes, and snippets.

@kairusds
Created June 6, 2021 23:01
Show Gist options
  • Save kairusds/d98aaf7af7cfeed5ae4d91493c0c89b0 to your computer and use it in GitHub Desktop.
Save kairusds/d98aaf7af7cfeed5ae4d91493c0c89b0 to your computer and use it in GitHub Desktop.
eruda userscript for use with tampermonkey on mobile browsers / via web browser
// ==UserScript==
// @name eruda
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include http://*
// @include https://*
// @icon https://www.google.com/s2/favicons?domain=greasyfork.org
// @run-at document-body
// @grant none
// ==/UserScript==
(() => {
let script = document.createElement("script");
script.src = "https://cdnjs.cloudflare.com/ajax/libs/eruda/2.4.1/eruda.min.js";
document.body.appendChild(script);
script.onload = () => eruda.init();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment