DataSpark Tools
Display DataSpark data on other sites.
什么是DataSpark Tools?
DataSpark Tools是由https://dataspark.co开发的Chrome扩展程序,该扩展的主要功能是“Display DataSpark data on other sites.”。
扩展截图
下载DataSpark Tools扩展crx文件
下载DataSpark Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | DataSpark Tools |
ID | abnaiofmnpfkkalcaaiidpeojccgocoe |
官方URL | https://chromewebstore.google.com/detail/dataspark-tools/abnaiofmnpfkkalcaaiidpeojccgocoe |
简介 | Display DataSpark data on other sites. |
文件大小 | 187 KB |
安装次数 | 5,321 |
当前版本 | 0.5.4 |
更新时间 | 2023-10-20 |
上架时间 | 2021-06-09 |
评分 | 3.71/5 共7次评分 |
开发者 | https://dataspark.co |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://dataspark.co |
帮助页面URL | https://dataspark.co/contact |
隐私政策页面URL | https://dataspark.co/privacy-policy |
支持的语言 | 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 } ] } |