ShopDAQ Price Compare
Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit.
什么是ShopDAQ Price Compare?
ShopDAQ Price Compare是由https://shopdaq.com开发的Chrome扩展程序,该扩展的主要功能是“Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit.”。
扩展截图
下载ShopDAQ Price Compare扩展crx文件
下载ShopDAQ Price Compare扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatic Comparison Shopping Shop normally and ShopDAQ will find lower prices and coupons for the items and stores that you are visiting. ShopDAQ Price Compare automatically looks for competitive prices on individual items that you view in an e-commerce site and displays them in a small bar at the top of the page. It also notifies you if coupons are available for the site that you are currently at and gives you the coupon codes. Since we search multiple sources in parallel, we are usually able to find better prices than you would by going to a price comparison search engine directly. In addition, ShopDAQ does not require you to change your shopping habits; in our tests, it recognized most mass produced products on major shopping sites in the US, UK, Canada, and Germany, and often found lower cost sources for identical items. Our extension only appears when it finds competitive prices or coupons for products or sites that you are viewing. (Currently works in the US, UK, Canada, France, and Germany; other countries coming soon.)
扩展基本信息
名称 | ShopDAQ Price Compare |
ID | ambghjoddffmldaglibmgnhegnekeohf |
官方URL | https://chromewebstore.google.com/detail/shopdaq-price-compare/ambghjoddffmldaglibmgnhegnekeohf |
简介 | Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit. |
文件大小 | 60.09 KB |
安装次数 | 315 |
当前版本 | 1.0 |
更新时间 | 2020-11-19 |
上架时间 | 2018-09-28 |
评分 | 4.38/5 共8次评分 |
开发者 | https://shopdaq.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://shopdaq.com |
隐私政策页面URL | https://shopdaq.com/privacy.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ShopDAQ Price Compare", "version": "1.0", "description": "Comparison shopping extension that finds the best prices for items that you view, and coupons for e-commerce sites that you visit.", "background": { "page": "background.html" }, "permissions": [ "https:\/\/shopdaq.com\/*", "http:\/\/shopdaq.com\/*", "tabs" ], "page_action": { "default_icon": "pageaction.png", "default_title": "Click to Get Coupons For This Site", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ], "web_accessible_resources": [ "close_button_red.png" ] } |