DataSpark Tools

Display DataSpark data on other sites.

What is DataSpark Tools?

DataSpark Tools is a Chrome extension developed by https://dataspark.co, and its main feature is "Display DataSpark data on other sites.".

Extension Screenshots

screenshot
screenshot
screenshot

Download DataSpark Tools Extension CRX File

Download DataSpark Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name DataSpark Tools DataSpark Tools
ID abnaiofmnpfkkalcaaiidpeojccgocoe
Official URL https://chromewebstore.google.com/detail/dataspark-tools/abnaiofmnpfkkalcaaiidpeojccgocoe
Description Display DataSpark data on other sites.
File Size 187 KB
Installation Count 5,321
Current Version 0.5.4
Last Updated 2023-10-20
Publish Date 2021-06-09
Rating 3.71/5 Total 7 Ratings
Developer https://dataspark.co
Email [email protected]
Payment Type free
Extension Website https://dataspark.co
Help Page URL https://dataspark.co/contact
Privacy Policy Page URL https://dataspark.co/privacy-policy
Supported Languages 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
        }
    ]
}