Shopper's Helper
Helps USER find cheapest products online.
Τι είναι το Shopper's Helper;
Το Shopper's Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://onlineshoppershelper.com, και η κύρια λειτουργία του είναι "Helps USER find cheapest products online.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Shopper's Helper
Λήψη αρχείων επέκτασης Shopper's Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension helps online shoppers find the cheapest products by themselves without relying on search engines' (sometimes less than accurate) results. The user can enter a search into the text box and then open any listed store with that search already done. The user can also check off which stores to search, then click the "Multi Search!" button, and each store that is checked off, will be opened in a separate tab with the search done. It also offers an innovative way of accurately comparing products while shopping, by taking identifying information (e.g. UPC code, model number) from a product page (supported on many popular sites), and filling the search term with that information, making it extremely easy and fast to manually look for the same product on different sites. Test this feature by going to http://www.ebay.com/itm/SanDisk-64GB-Ultra-Micro-SD-XC-Class-10-Memory-Card-for-Samsung-Galaxy-Tab-3-S4-/251494626230?hash=item3a8e3f73b6:g:iykAAOSw42JWCx1Q and https://www.amazon.com/Samsung-850-EVO-2-5-Inch-MZ-75E500B/dp/B00OBRE5UE/ref=sr_1_2?s=pc&ie=UTF8&qid=1476405818&sr=1-2&keywords=ssd as examples after the extension is installed and then click on the extension icon and see how it fills in some of the products identifying specs. It is also useful as a quick link to stores. If you would like to go to a certain store, just click on the icon and click on the store you would like to go to.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Shopper's Helper |
ID | kfmbegmldjalbamfjdpdolgdlmenljke |
Επίσημο URL | https://chromewebstore.google.com/detail/shoppers-helper/kfmbegmldjalbamfjdpdolgdlmenljke |
Περιγραφή | Helps USER find cheapest products online. |
Μέγεθος Αρχείου | 845 KB |
Αριθμός Εγκαταστάσεων | 119 |
Τρέχουσα Έκδοση | 0.0.1.8 |
Τελευταία Ενημέρωση | 2019-11-09 |
Ημερομηνία Δημοσίευσης | 2019-11-08 |
Αξιολόγηση | 4.78/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | https://onlineshoppershelper.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.onlineshoppershelper.com |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Shopper's Helper", "description": "Helps USER find cheapest products online.", "version": "0.0.1.8", "browser_action": { "default_icon": "orangeicon.png", "default_title": "Shopper's Helper", "default_popup": "siteextpopup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.adorama.com\/*", "*:\/\/*.autopartswarehouse.com\/*", "*:\/\/*.bedbathandbeyond.com\/*", "*:\/\/*.bestbuy.com\/*", "*:\/\/*.bhphotovideo.com\/*", "*:\/\/*.bloomingdales.com\/*", "*:\/\/*.buydig.com\/*", "*:\/\/*.ebay.com\/*", "*:\/\/*.gap.com\/*", "*:\/\/*.groupon.com\/*", "*:\/\/*.hdsupplysolutions.com\/*", "*:\/\/*.homedepot.com\/*", "*:\/\/*.jcpenney.com\/*", "*:\/\/*.jet.com\/*", "*:\/\/*.kmart.com\/*", "*:\/\/*.kohls.com\/*", "*:\/\/*.lowes.com\/*", "*:\/\/*.macys.com\/*", "*:\/\/*.newegg.com\/*", "*:\/\/*.officedepot.com\/*", "*:\/\/*.overstock.com\/*", "*:\/\/*.quill.com\/*", "*:\/\/*.sears.com\/*", "*:\/\/*.staples.com\/*", "*:\/\/*.target.com\/*", "*:\/\/*.techrabbit.com\/*", "*:\/\/*.toysrus.com\/*", "*:\/\/*.walmart.com\/*" ], "js": [ "jquery-2.2.4.js", "allcontent.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.onlineshoppershelper.com\/*" ], "js": [ "jquery-2.2.4.js", "sitecontent.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "jquery-2.2.4.js", "siteextbackground.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/fullstory.com\/s\/fs.js; object-src 'self'", "permissions": [ "activeTab", "tabs" ] } |