generated from tejonaco/userscript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- script running on document-idle
- Loading branch information
Showing
8 changed files
with
43 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters