Bizmetrica
Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.
Cos'è Bizmetrica?
Bizmetrica è un'estensione di Chrome sviluppata da https://bizmetrica.com, e la sua funzione principale è "Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bizmetrica
Scarica i file di estensione Bizmetrica 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
Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page. By adding Bizmetrica to your Chrome browser, you can evaluate product opportunities as you search Walmart's catalog, making product research quick and easy. Easily find products with high demand, but low competition on Walmart. Assess a product’s potential in seconds and find your next winning product on Walmart.
Informazioni di Base sull'Estensione
Nome | Bizmetrica |
ID | ajnapfjdnemgoenegdgioapmililgloe |
URL Ufficiale | https://chromewebstore.google.com/detail/bizmetrica/ajnapfjdnemgoenegdgioapmililgloe |
Descrizione | Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page. |
Dimensione del File | 718 KB |
Conteggio Installazioni | 93 |
Versione Corrente | 0.0.0.27 |
Ultimo Aggiornamento | 2024-01-14 |
Data di Pubblicazione | 2023-06-29 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://bizmetrica.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.privacypolicies.com/live/9e5fc4df-d3ee-45b9-a109-1fcbfb02fb9b |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bizmetrica", "description": "Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.", "permissions": [ "activeTab", "scripting", "https:\/\/api.bluecartapi.com\/*", "identity", "identity.email" ], "version": "0.0.0.27", "icons": { "16": "U_16.png", "48": "U_48.png", "128": "U_128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Walmart Product Research" }, "content_scripts": [ { "matches": [ "https:\/\/www.walmart.com\/*" ], "js": [ "calculator.js", "content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.walmart.com\/*" ], "js": [ "content.js", "calculator.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "amazon.png", "google.png" ], "matches": [ "https:\/\/www.walmart.com\/*" ] } ], "host_permissions": [ "https:\/\/www.walmart.com\/*" ] } |