Bizmetrica
Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.
Hvad er Bizmetrica?
Bizmetrica er en Chrome-udvidelse udviklet af https://bizmetrica.com, og dens hovedfunktion er "Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.".
Udvidelsesskærmbilleder
Download Bizmetrica-udvidelses-CRX-fil
Download Bizmetrica-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Bizmetrica |
ID | ajnapfjdnemgoenegdgioapmililgloe |
Officiel URL | https://chromewebstore.google.com/detail/bizmetrica/ajnapfjdnemgoenegdgioapmililgloe |
Beskrivelse | Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page. |
Filstørrelse | 718 KB |
Antal Installationer | 93 |
Nuværende Version | 0.0.0.27 |
Senest Opdateret | 2024-01-14 |
Udgivelsesdato | 2023-06-29 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://bizmetrica.com |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://www.privacypolicies.com/live/9e5fc4df-d3ee-45b9-a109-1fcbfb02fb9b |
Understøttede Sprog | 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\/*" ] } |