DataSpark Tools
Display DataSpark data on other sites.
Apa itu DataSpark Tools?
DataSpark Tools adalah ekstensi Chrome yang dikembangkan oleh https://dataspark.co, dan fitur utamanya adalah "Display DataSpark data on other sites.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi DataSpark Tools
Unduh file ekstensi DataSpark Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Walmart marketplace sellers can display DataSpark data (like sales estimates) right on Walmart and Amazon webpages. DataSpark brings you the best Walmart seller tools to make your wholesale, sourcing, arbitrage, and own brand selling easier. We seamlessly embed product information on Walmart.com to help you evaluate potential products and verify decisions. Seller tools made easy! Featured data for WMT includes: Sales Estimates Historical Price tracking and trends Sales Rank Buy Box Percentage Coming soon Amazon Detail Page integration as well as Walmart Seller Center, Amazon Seller Central, and more ecommerce seller tools to help you track and win in all of your marketplaces. Thank you! The Data Spark Team
Informasi Dasar Ekstensi
Nama | DataSpark Tools |
ID | abnaiofmnpfkkalcaaiidpeojccgocoe |
URL Resmi | https://chromewebstore.google.com/detail/dataspark-tools/abnaiofmnpfkkalcaaiidpeojccgocoe |
Deskripsi | Display DataSpark data on other sites. |
Ukuran File | 187 KB |
Jumlah Instalasi | 5,321 |
Versi Saat Ini | 0.5.4 |
Terakhir Diperbarui | 2023-10-20 |
Tanggal Publikasi | 2021-06-09 |
Penilaian | 3.71/5 Total 7 Penilaian |
Pengembang | https://dataspark.co |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://dataspark.co |
URL Halaman Bantuan | https://dataspark.co/contact |
URL Halaman Kebijakan Privasi | https://dataspark.co/privacy-policy |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "DataSpark Tools", "description": "Display DataSpark data on other sites.", "version": "0.5.4", "action": { "default_icon": "submark.png", "default_popup": "popup.html", "default_title": "DataSpark" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.walmart.com\/*", "https:\/\/walmart.com\/*", "https:\/\/*.amazon.com\/*", "https:\/\/dataspark.co\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.walmart.com\/*" ], "js": [ "shared.content_script.js", "walmart.content_script.js" ], "css": [ "primary_content.css" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "https:\/\/*.amazon.com\/*" ], "js": [ "shared.content_script.js", "amazon.content_script.js" ], "css": [ "primary_content.css" ], "run_at": "document_end", "all_frames": true } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "images\/*.png", "fonts\/*.ttf", "walmart_content.css", "images\/*.svg" ], "matches": [ "https:\/\/*.walmart.com\/*", "https:\/\/walmart.com\/*", "https:\/\/*.amazon.com\/*", "https:\/\/dataspark.co\/*" ], "use_dynamic_url": true } ] } |