Greasy Fork is available in English.

ExEv

(Ex)tended (Ev)ents - provides an API for some missing on-x events

Este script não deve ser instalado diretamente. Este script é uma biblioteca de outros scripts para incluir com o diretório meta // @require https://update.greasyfork.org/scripts/403996/808391/ExEv.js

Autor
akuankka128
Versão
0.1.1
Criado
23/05/2020
Atualizado
23/05/2020
Licença
N/A

Extended Events

This is an API which covers some of the missing document.on-x events.
Currently supported events are headloaded and bodyloaded.

Example usage:
document.events.on('headloaded', () => {
    let style = document.createElement('style');
    style.innerHTML = "* { outline:.75px solid red; }";
    document.head.appendChild(style);
});