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 } ] } |