Skip to content

Instantly share code, notes, and snippets.

@JLCareglio
Last active July 2, 2025 21:46
Show Gist options
  • Save JLCareglio/c8b5c6b6f9a55b2d0b8fe7e5e4214136 to your computer and use it in GitHub Desktop.
Save JLCareglio/c8b5c6b6f9a55b2d0b8fe7e5e4214136 to your computer and use it in GitHub Desktop.

Eruda Console Injector

This UserScript injects the Eruda developer console into any website, providing powerful debugging tools for mobile browsers.

image

License: MIT Tampermonkey

Firefox Edge

✨ Features

🚀 Installation

  1. Install Tampermonkey or another userscript manager
  2. Click here to install the script
  3. The Eruda console will be available on any website

💡 Usage

  1. After installation, a small Eruda icon will appear in the corner of the page
  2. Drag the icon to reposition it on the screen
  3. Click the icon to open the developer tools
  4. Use the tabs at the bottom to switch between different tools
  5. Click the icon to close the developer tools

📚 Documentation

For more detailed information and advanced usage, please refer to the official Eruda documentation.

🤝 Contributing

Read Contributing Guide for development setup instructions. Oficial repo: https://github.com/liriliri/eruda.

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Credits

// ==UserScript==
// @name Eruda Console Injector
// @name:en Eruda Console Injector
// @name:es Inyector de Consola Eruda
// @name:es-LA Inyector de Consola Eruda
// @name:es-419 Inyector de Consola Eruda
// @name:it Iniettore Console Eruda
// @name:ja Erudaコンソールインジェクター
// @name:uk Інжектор консолі Eruda
// @name:zh-TW Eruda 主控台注入器
// @tag productivity
// @tag utilities
// @namespace https://jlcareglio.github.io/
// @version 1.6
// @description Console for mobile browser. This script injects Eruda, an in-page console, for debugging on mobile.
// @description:en Console for mobile browser. This script injects Eruda, an in-page console, for debugging on mobile.
// @description:es Consola para navegador móvil. Este script inyecta Eruda, una consola en la página, para depurar en el móvil.
// @description:es-LA Consola para navegador móvil. Este script inyecta Eruda, una consola en la página, para depurar en el móvil.
// @description:es-419 Consola para navegador móvil. Este script inyecta Eruda, una consola en la página, para depurar en el móvil.
// @description:it Console per browser mobile. Questo script inietta Eruda, una console in-page, per il debug su dispositivi mobili.
// @description:ja モバイルブラウザ用のコンソール。このスクリプトは、モバイルでのデバッグのために、ページ内コンソールであるErudaを注入します。
// @description:uk Консоль для мобільного браузера. Цей скрипт впроваджує Eruda, консоль на сторінці, для налагодження на мобільних пристроях.
// @description:zh-TW 用於行動瀏覽器的主控台。此腳本會注入 Eruda,這是一個頁面內主控台,用於在行動裝置上進行偵錯。
// @run-at document-start
// @require https://cdn.jsdelivr.net/npm/eruda
// @icon https://www.google.com/s2/favicons?sz=64&domain=eruda.liriliri.io
// @grant none
// @author surunzi (Runzi Su), jlcareglio (Jesús Lautaro Careglio Albornoz)
// @source https://github.com/liriliri/eruda
// @match *://*/*
// @updateURL https://gist.githubusercontent.com/JLCareglio/c8b5c6b6f9a55b2d0b8fe7e5e4214136/raw/01_Eruda-Console-Injector.user.js
// @downloadURL https://gist.githubusercontent.com/JLCareglio/c8b5c6b6f9a55b2d0b8fe7e5e4214136/raw/01_Eruda-Console-Injector.user.js
// @license MIT
// @compatible firefox
// @compatible edge
// @supportURL https://github.com/liriliri/eruda/issues
// ==/UserScript==
eruda.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment