DataSpark Tools

Display DataSpark data on other sites.

Vad är DataSpark Tools?

DataSpark Tools är en Chrome-tillägg utvecklad av https://dataspark.co, och dess huvudfunktion är "Display DataSpark data on other sites.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner DataSpark Tools-förlängningens CRX-fil

Ladda ner DataSpark Tools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn DataSpark Tools DataSpark Tools
ID abnaiofmnpfkkalcaaiidpeojccgocoe
Officiell webbadress https://chromewebstore.google.com/detail/dataspark-tools/abnaiofmnpfkkalcaaiidpeojccgocoe
Beskrivning Display DataSpark data on other sites.
Filstorlek 187 KB
Antal Installationer 5,321
Aktuell Version 0.5.4
Senast Uppdaterad 2023-10-20
Publiceringsdatum 2021-06-09
Betyg 3.71/5 Totalt 7 Betyg
Utvecklare https://dataspark.co
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://dataspark.co
Hjälpsida URL https://dataspark.co/contact
URL till Sekretesspolicy Sidan https://dataspark.co/privacy-policy
Stödda Språk 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
        }
    ]
}