ForoCoches Hide
Bloquea los hilos que no te interesen de cualquier subforo de Forocoches.
ForoCoches Hideคืออะไร?
ForoCoches Hide เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kukident และคุณลักษณะหลักของมันคือ "Bloquea los hilos que no te interesen de cualquier subforo de Forocoches."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ForoCoches Hide
ดาวน์โหลดไฟล์ส่วนขยาย ForoCoches Hide ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nodigocfhjkcjkkmcmbfcglgibimgpap |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/forocoches-hide/nodigocfhjkcjkkmcmbfcglgibimgpap |
คำอธิบาย | Bloquea los hilos que no te interesen de cualquier subforo de Forocoches. |
ขนาดไฟล์ | 808 KB |
จำนวนการติดตั้ง | 51 |
เวอร์ชันปัจจุบัน | 1.1.3 |
อัปเดตครั้งล่าสุด | 2022-11-07 |
วันที่เผยแพร่ | 2019-05-09 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Kukident |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Kukident/Forocoches_Hide_Beta |
ภาษาที่รองรับ | 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" } } |