Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/haithamaouati/eruda
- Owner: haithamaouati
- Created: 2024-04-10T03:00:15.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-10T03:17:52.000Z (10 months ago)
- Last Synced: 2024-11-09T07:42:53.102Z (3 months ago)
- Topics: broswer, console, element, eruda, inspect, javascript, mobile, script, userscript, via
- Language: JavaScript
- Homepage: https://eruda.liriliri.io/
- Size: 306 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
};
})();
```