Wishi Me
Add items you really own to your Wishi closet
¿Qué es Wishi Me?
Wishi Me es una extensión de Chrome desarrollada por https://www.wishi.me, y su función principal es "Add items you really own to your Wishi closet".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Wishi Me
Descarga archivos de extensión Wishi Me en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
WiShi offers a new way for people to get dressed every day by connecting amateur and professional stylists with people who seek help with styling, based on their real closet. With this Chrome extension, it is simple for users to add items of their favorite brands that they really own to their WiShi virtual closet. When activated, the extension scans the page for images and adds the Wishi icon to each image. When clicking the icon the user gets redirected to his/her closet on Wishi website where he confirms the new item and it's being added to his closet.
Información Básica de la Extensión
Nombre | Wishi Me |
ID | ejgkbedlladlhfjmmgpndphhkjcenkgc |
URL Oficial | https://chromewebstore.google.com/detail/wishi-me/ejgkbedlladlhfjmmgpndphhkjcenkgc |
Descripción | Add items you really own to your Wishi closet |
Tamaño del Archivo | 54.3 KB |
Cantidad de Instalaciones | 118 |
Versión Actual | 1.0.0 |
Última Actualización | 2019-03-05 |
Fecha de Publicación | 2019-03-05 |
Calificación | 5.00/5 Total de 7 Calificaciones |
Desarrollador | https://www.wishi.me |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wishi Me", "version": "1.0.0", "manifest_version": 2, "description": "Add items you really own to your Wishi closet", "icons": { "16": "wishi16.png", "48": "wishi48.png", "128": "wishi128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "http:\/\/*.wishi.me\/*", "https:\/\/*.wishi.me\/*", "http:\/\/wishi.me\/*", "https:\/\/wishi.me\/*" ], "css": [ "pageContent.min.css" ], "js": [ "jquery-2.2.0.min.js", "pageContent.min.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "onClick.js" ] }, "browser_action": { "default_icon": "wishi16.png", "default_title": "Wishi Me" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "http:\/\/*.wishi.me\/" ] } |