Bizmetrica
Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.
Qu'est-ce que Bizmetrica ?
Bizmetrica est une extension Chrome développée par https://bizmetrica.com, et sa fonction principale est "Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bizmetrica
Téléchargez les fichiers d'extension Bizmetrica au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Bizmetrica |
ID | ajnapfjdnemgoenegdgioapmililgloe |
URL Officiel | https://chromewebstore.google.com/detail/bizmetrica/ajnapfjdnemgoenegdgioapmililgloe |
Description | Walmart product research made easy. See rank, estimated sales volume, estimated revenue and more without entering the product page. |
Taille du Fichier | 718 KB |
Nombre d'Installations | 93 |
Version Actuelle | 0.0.0.27 |
Dernière Mise à Jour | 2024-01-14 |
Date de Publication | 2023-06-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://bizmetrica.com |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.privacypolicies.com/live/9e5fc4df-d3ee-45b9-a109-1fcbfb02fb9b |
Langues Prises en Charge | 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\/*" ] } |