DataSpark Tools
Display DataSpark data on other sites.
DataSpark Tools là gì?
DataSpark Tools là một tiện ích mở rộng Chrome được phát triển bởi https://dataspark.co, và tính năng chính của nó là "Display DataSpark data on other sites.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DataSpark Tools
Tải xuống các tệp mở rộng DataSpark Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DataSpark Tools |
ID | abnaiofmnpfkkalcaaiidpeojccgocoe |
URL Chính Thức | https://chromewebstore.google.com/detail/dataspark-tools/abnaiofmnpfkkalcaaiidpeojccgocoe |
Mô tả | Display DataSpark data on other sites. |
Kích Thước Tệp | 187 KB |
Số Lần Cài Đặt | 5,321 |
Phiên Bản Hiện Tại | 0.5.4 |
Cập Nhật Lần Cuối | 2023-10-20 |
Ngày Phát Hành | 2021-06-09 |
Đánh Giá | 3.71/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | https://dataspark.co |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://dataspark.co |
URL Trang Trợ Giúp | https://dataspark.co/contact |
URL Trang Chính Sách Bảo Mật | https://dataspark.co/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |