DataSpark Tools
Display DataSpark data on other sites.
Что такое DataSpark Tools?
DataSpark Tools - это расширение Chrome, разработанное https://dataspark.co, и его основная функция - "Display DataSpark data on other sites.".
Снимки экрана расширения
Скачать файл CRX расширения DataSpark Tools
Скачайте файлы расширений 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 } ] } |