Shur9000
Agrega algunas funciones a forocoches
Shur9000คืออะไร?
Shur9000 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย over9000 และคุณลักษณะหลักของมันคือ "Agrega algunas funciones a forocoches"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shur9000
ดาวน์โหลดไฟล์ส่วนขยาย Shur9000 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Shur9000 es una sencilla extensión para Google Chrome que te permitirá añadir funciones adicionales a forocoches, como: - La posibilidad de destacar los mensajes escritos por el op del hilo en otro color - Añade la función de subir imágenes a imgur directamente desde el foro (con drag&drop) - Posibilidad de ocultar los hilos cuyo título contiene determinadas palabras como podrían ser "Podemos", "fútbol", "plataforma" o cualquier otra. - Posibilidad de filtrar los hilos creados por uno o varios usuarios. En proceso... - Mini-Chat integrado - Sistema de notificaciones (?) En un principio el sistema de notificaciones se basará en un enlace al buscador y lo publicaré en unos días, algo simple. Si en un futuro cercano es posible hacer una implementación con una API o similar, me comprometo a hacerlo. *Por supuesto NO voy a implementar el sistema del antiguo ShurScript que acaba saturando el foro.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lfocppeafakhemjjdaggefkcemdkmjii |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/shur9000/lfocppeafakhemjjdaggefkcemdkmjii |
คำอธิบาย | Agrega algunas funciones a forocoches |
ขนาดไฟล์ | 59.78 KB |
จำนวนการติดตั้ง | 72 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2014-12-22 |
วันที่เผยแพร่ | 2014-12-22 |
คะแนน | 4.71/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | over9000 |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.forocoches.com |
ภาษาที่รองรับ | es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shur9000", "version": "0.1", "description": "Agrega algunas funciones a forocoches", "options_page": "options.html", "background": { "page": "background.html" }, "manifest_version": 2, "browser_action": { "name": "Shur9000", "icons": [ "icon.png" ], "default_icon": "icon.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "jquery.min.js", "background.js", "options.js" ], "css": [ "customStyles.css", "options.css" ], "matches": [ "http:\/\/www.forocoches.com\/*", "https:\/\/www.forocoches.com\/*" ] } ] } |