Shopping Helper: Find the Best Price
Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.
Cos'è Shopping Helper: Find the Best Price?
Shopping Helper: Find the Best Price è un'estensione di Chrome sviluppata da 3PM Solutions, e la sua funzione principale è "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Shopping Helper: Find the Best Price
Scarica i file di estensione Shopping Helper: Find the Best Price in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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]
Informazioni di Base sull'Estensione
Nome | |
ID | hcjoidkfgioghboeledhickmamiomgon |
URL Ufficiale | https://chrome.google.com/webstore/detail/shopping-helper-find-the/hcjoidkfgioghboeledhickmamiomgon |
Descrizione | Shopping Helper is a price comparison tool for e-commerce that helps users find the best price. |
Dimensione del File | 579 KB |
Conteggio Installazioni | 138 |
Versione Corrente | 0.1.27.1 |
Ultimo Aggiornamento | 2020-11-18 |
Data di Pubblicazione | 2020-10-02 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | 3PM Solutions |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://3pmshop.com/privacy |
Lingue Supportate | 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" } } |