Skip to content

Commit

Permalink
- README
Browse files Browse the repository at this point in the history
- script running on document-idle
  • Loading branch information
tejonaco committed Sep 3, 2024
1 parent bd29dab commit 06e9c6c
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 18 deletions.
41 changes: 33 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,33 @@
# Userscript template

Template for Violentmonkey (or similar extensions) with default modules.
- Typescript -> for better code composition
- Vite -> for fast development of bundle
- Preact -> for easy + lightweight dynamic html
- Tailwind -> for easy css styling
- HTTP-Server -> for using auto track feature of Violentmonkey
# FC-PLUS

Userscript que actua como extensión para forocoches.com.
Puedes instalarlo con tu extensión favorita, te recomiendo [ViolentMonkey](https://violentmonkey.github.io/)

## Como abrir el menu
Dejando el raton encima de tu foto de perfil (arriba a la derecha) aparecerá roto2, haciendo click se desplega el menu de la extensión.
Si no quieres esperar tambien puedes hacer ctrl+click en tu foto de perfil.
![](assets/1.png)

## Funciones

### Ignorar palabras
Puedes filtrar los temas que no sean de tu interés y no aparecerán en la lista de hilos.
![](assets/2.png)

### Ignorar usuarios
Los usuarios de tu lista de ignorados no aparecerán en la lista de hilos.
También puedes evitar ver el mensaje de "@tal esta en tu lista de ignorados" en sus comentarios.
![](assets/3.png)

### Pegar enlaces de redes sociales
Al pegar un enlace de Youtube, Instagram... Automáticamente se formateará para que se muestre correctamente en el foro.

### Configurable
Todas estas opciones pueden deshabilitarse de configuración
![](assets/4.png)

## Otros
Probado en escritorio, con la versión nueva del foro.
Si la estructura del foro cambia algunas funciones podrían dejar de funcionar, puedes anotar el problema en Github, o mejor aun, hacer un pull request con la solución.

Un saludo y buen foro.
Binary file added assets/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 2 additions & 4 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,5 @@ async function loadCSS () {
}


document.addEventListener('DOMContentLoaded', () => {
main()
loadCSS()
});
main()
loadCSS()
12 changes: 7 additions & 5 deletions src/userscript-header.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
// ==UserScript==
// @name FC Plus
// @version 0.0.1
// @description Userscript Template
// @namespce tejonaco
// @version 1.0.0
// @description Extensión para forocoches.com
// @license MIT
// @icon https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Roto2.svg/240px-Roto2.svg.png
// @match https://forocoches.com/foro/*
// @grant GM_getResourceText
// @grant GM_addStyle
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_xmlhttpRequest
// @run-at document-start
// @run-at document-idle
// @resource css style.css
// ==/UserScript==

// ==/UserScript==
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const myConsole = console // save original console, just in case site overwrites
export function log(message: any, ...optionalParams: any[]) {
myConsole.log(
`%c${pkg.name}:`,
'color: emerald; font-weight: bold',
'color: green; font-weight: bold',
message, ...optionalParams
);
}
Expand Down

0 comments on commit 06e9c6c

Please sign in to comment.