Shopping Helper: Find the Best Price
Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.
Τι είναι το Shopping Helper: Find the Best Price;
Το Shopping Helper: Find the Best Price είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 3PM Solutions, και η κύρια λειτουργία του είναι "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Shopping Helper: Find the Best Price
Λήψη αρχείων επέκτασης Shopping Helper: Find the Best Price σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Supported retailers: – amazon.com – walmart.com – target.com Frequently Asked Questions: Q: Do you sell user data? A: No we don’t. Q: Is the extension free? A: Currently, the extension is free. Q: Are you affiliated with any marketplaces? A: No, we are not. Thank you for choosing us. If you have any proposals or suggestions, please email us [email protected]
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | hcjoidkfgioghboeledhickmamiomgon |
Επίσημο URL | https://chrome.google.com/webstore/detail/shopping-helper-find-the/hcjoidkfgioghboeledhickmamiomgon |
Περιγραφή | Shopping Helper is a price comparison tool for e-commerce that helps users find the best price. |
Μέγεθος Αρχείου | 579 KB |
Αριθμός Εγκαταστάσεων | 138 |
Τρέχουσα Έκδοση | 0.1.27.1 |
Τελευταία Ενημέρωση | 2020-11-18 |
Ημερομηνία Δημοσίευσης | 2020-10-02 |
Αξιολόγηση | 5.00/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | 3PM Solutions |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://3pmshop.com/privacy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Shopping Helper: Find the Best Price", "author": "3PM Shop", "short_name": "3PM Shop", "description": "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.", "version": "0.1.27.1", "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*.amazon.com\/*", "https:\/\/*.amazon.com\/*" ], "js": [ "amazon.js" ], "css": [ "amazon.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.walmart.com\/*", "https:\/\/*.walmart.com\/*" ], "js": [ "walmart.js" ], "css": [ "walmart.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.target.com\/*", "https:\/\/*.target.com\/*" ], "js": [ "target.js" ], "css": [ "target.css" ], "run_at": "document_start" } ], "permissions": [ "storage", "cookies", "http:\/\/*.amazon.com\/*", "https:\/\/*.amazon.com\/*", "http:\/\/*.walmart.com\/*", "https:\/\/*.walmart.com\/*", "http:\/\/*.target.com\/*", "https:\/\/*.target.com\/*", "http:\/\/*.3pmshop.com\/*", "https:\/\/*.3pmshop.com\/*" ], "browser_action": { "default_title": "Shopping Helper: Find the Best Price", "default_icon": { "16": "icon128.png", "48": "icon128.png", "96": "icon128.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "icon128.png", "48": "icon128.png", "96": "icon128.png", "128": "icon128.png" } } |