Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/haithamaouati/eruda

Eruda — Console for Mobile Browsers
https://github.com/haithamaouati/eruda

broswer console element eruda inspect javascript mobile script userscript via

Last synced: about 1 month ago
JSON representation

Eruda — Console for Mobile Browsers

Awesome Lists containing this project

README

        

# Eruda
**Eruda** Console for Mobile Browsers.

![eruda](https://raw.githubusercontent.com/haithamaouati/Eruda/main/eruda.jpeg)

## Demo
Browse it on your phone: https://eruda.liriliri.io/

In order to try it for different sites, execute the script below on [Via](https://viayoo.com/en/) browser

###### Userscript
```javascript
// ==UserScript==
// @name Eruda
// @namespace https://eruda.liriliri.io/
// @version 0.1
// @description Console for mobile browsers
// @author Haitham Aouati
// @run-at document-start
// @match https://*/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

var script = document.createElement('script');
script.src = "https://cdn.jsdelivr.net/npm/eruda";
document.body.append(script);

script.onload = function() {
eruda.init();
};
})();
```