Shopping Helper: Find the Best Price
Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.
什麼是Shopping Helper: Find the Best Price?
Shopping Helper: Find the Best Price是由3PM Solutions開發的Chrome擴展程式,該擴展的主要功能是“Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.”。
擴展截圖
下載Shopping Helper: Find the Best Price擴展crx文件
下載Shopping Helper: Find the Best Price擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Supported retailers: – amazon.com – walmart.com – target.com Frequently Asked Questions: Q: Do you sell user data? A: No we don’t. Q: Is the extension free? A: Currently, the extension is free. Q: Are you affiliated with any marketplaces? A: No, we are not. Thank you for choosing us. If you have any proposals or suggestions, please email us [email protected]
擴展基本資訊
名稱 | |
ID | hcjoidkfgioghboeledhickmamiomgon |
官方網址 | https://chrome.google.com/webstore/detail/shopping-helper-find-the/hcjoidkfgioghboeledhickmamiomgon |
簡介 | Shopping Helper is a price comparison tool for e-commerce that helps users find the best price. |
檔案大小 | 579 KB |
安裝次數 | 138 |
目前版本 | 0.1.27.1 |
更新時間 | 2020-11-18 |
上架時間 | 2020-10-02 |
評分 | 5.00/5 共 7 次評分 |
開發者 | 3PM Solutions |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://3pmshop.com/privacy |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Shopping Helper: Find the Best Price", "author": "3PM Shop", "short_name": "3PM Shop", "description": "Shopping Helper is a price comparison tool for e-commerce that helps users find the best price.", "version": "0.1.27.1", "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*.amazon.com\/*", "https:\/\/*.amazon.com\/*" ], "js": [ "amazon.js" ], "css": [ "amazon.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.walmart.com\/*", "https:\/\/*.walmart.com\/*" ], "js": [ "walmart.js" ], "css": [ "walmart.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.target.com\/*", "https:\/\/*.target.com\/*" ], "js": [ "target.js" ], "css": [ "target.css" ], "run_at": "document_start" } ], "permissions": [ "storage", "cookies", "http:\/\/*.amazon.com\/*", "https:\/\/*.amazon.com\/*", "http:\/\/*.walmart.com\/*", "https:\/\/*.walmart.com\/*", "http:\/\/*.target.com\/*", "https:\/\/*.target.com\/*", "http:\/\/*.3pmshop.com\/*", "https:\/\/*.3pmshop.com\/*" ], "browser_action": { "default_title": "Shopping Helper: Find the Best Price", "default_icon": { "16": "icon128.png", "48": "icon128.png", "96": "icon128.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "icon128.png", "48": "icon128.png", "96": "icon128.png", "128": "icon128.png" } } |