ForoCoches Hide
Bloquea los hilos que no te interesen de cualquier subforo de Forocoches.
Was ist ForoCoches Hide?
ForoCoches Hide ist eine Chrome-Erweiterung, die von Kukident entwickelt wurde, und ihr Hauptmerkmal ist "Bloquea los hilos que no te interesen de cualquier subforo de Forocoches.".
Erweiterungsscreenshots
ForoCoches Hide-Erweiterungs-CRX-Datei herunterladen
Laden Sie ForoCoches Hide-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Con esta extensión para chrome podrás bloquear y filtrar todos esos hilos que no te interesen leer. Incluye un pequeño widget con el que añadir de forma rápida hilos o usuarios que quieras ocultar. Ahora funciona para todos los subforos de ForoCoches, sitúate en el subforo en el que quieras ocultar hilos, abre el widget y añade las palabras a filtrar. Tan fácil como eso. Iremos añadiendo nuevas funcionalidades en el futuro. Puedes echarle un vistazo al codigo y aportar ideas en github: https://github.com/Kukident/Forocoches_Hide_Beta
Grundlegende Informationen zur Erweiterung
Name | |
ID | nodigocfhjkcjkkmcmbfcglgibimgpap |
Offizielle URL | https://chromewebstore.google.com/detail/forocoches-hide/nodigocfhjkcjkkmcmbfcglgibimgpap |
Beschreibung | Bloquea los hilos que no te interesen de cualquier subforo de Forocoches. |
Dateigröße | 808 KB |
Installationsanzahl | 51 |
Aktuelle Version | 1.1.3 |
Letztes Update | 2022-11-07 |
Veröffentlichungsdatum | 2019-05-09 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Kukident |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Kukident/Forocoches_Hide_Beta |
Unterstützte Sprachen | es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ForoCoches Hide", "short_name": "FC Hide", "options_page": "options.html", "description": "Bloquea los hilos que no te interesen de cualquier subforo de Forocoches.", "version": "1.1.3", "permissions": [ "storage", "activeTab", "declarativeContent" ], "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "action": { "default_icon": { "19": "img\/icon.png", "38": "img\/icon.png" }, "default_popup": "popup.html" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/apis.google.com\/' 'https:\/\/www.gstatic.com\/' 'https:\/\/*.firebaseio.com' 'https:\/\/www.googleapis.com' 'https:\/\/ajax.googleapis.com'; object-src 'self'" }, "content_scripts": [ { "matches": [ "http:\/\/forocoches.com\/foro\/forumdisplay.php?f=*", "https:\/\/forocoches.com\/foro\/forumdisplay.php?f=*" ], "js": [ "js\/libs\/jquery-3.2.1.js", "js\/utils.js", "js\/storage.js", "js\/myscript.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/forocoches.com\/foro\/showthread.php?t=*", "http:\/\/forocoches.com\/foro\/showthread.php?t=*" ], "js": [ "js\/libs\/jquery-3.2.1.js", "js\/libs\/isInViewport.js", "js\/utils.js", "js\/storage.js", "js\/posts.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/forocoches.com\/foro\/newreply.php*", "https:\/\/forocoches.com\/foro\/newreply.php*", "http:\/\/forocoches.com\/foro\/newthread.php*", "https:\/\/forocoches.com\/foro\/newthread.php?*" ], "js": [ "js\/libs\/jquery-3.2.1.js", "js\/posts_reply.js" ], "run_at": "document_end" } ], "background": { "service_worker": "js\/eventPage.js" } } |