Wishi Me
Add items you really own to your Wishi closet
Τι είναι το Wishi Me;
Το Wishi Me είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.wishi.me, και η κύρια λειτουργία του είναι "Add items you really own to your Wishi closet".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Wishi Me
Λήψη αρχείων επέκτασης Wishi Me σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Wishi Me |
ID | ejgkbedlladlhfjmmgpndphhkjcenkgc |
Επίσημο URL | https://chromewebstore.google.com/detail/wishi-me/ejgkbedlladlhfjmmgpndphhkjcenkgc |
Περιγραφή | Add items you really own to your Wishi closet |
Μέγεθος Αρχείου | 54.3 KB |
Αριθμός Εγκαταστάσεων | 118 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2019-03-05 |
Ημερομηνία Δημοσίευσης | 2019-03-05 |
Αξιολόγηση | 5.00/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | https://www.wishi.me |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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\/" ] } |