Sook
Browse online. Buy from the store next door.
什麼是Sook?
Sook是由https://shopyoursook.com開發的Chrome擴展程式,該擴展的主要功能是“Browse online. Buy from the store next door.”。
擴展截圖
下載Sook擴展crx文件
下載Sook擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
SOOK is a shopping assistant for Chrome, Firefox and Microsoft Edge that lets you easily browse & buy from amazing Local and Small Batch Brands. You can either: 1) Open SOOK in your browser bar and search by typing in what you are looking for, or search by Category. 2) When you search for products on selected large retailer site Like Amazon.com - SOOK will notify you if it finds something similar from a Small Batch or Local Brand. SOOK currently has thousands of Small Batch and Local Brands, millions of products, and is adding more everyday. Enjoy! IMPORTANT: Sook asks you to set up a profile so you can save products you like and return to them. We do not track or sell your data.
擴展基本資訊
名稱 | Sook |
ID | hhpjbegfdghkiklhipkkhlnohakkined |
官方網址 | https://chromewebstore.google.com/detail/sook/hhpjbegfdghkiklhipkkhlnohakkined |
簡介 | Browse online. Buy from the store next door. |
檔案大小 | 3.12 MB |
安裝次數 | 5,203 |
目前版本 | 2 |
更新時間 | 2023-02-01 |
上架時間 | 2020-08-19 |
評分 | 3.84/5 共 38 次評分 |
開發者 | https://shopyoursook.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.shopyoursook.com/ |
說明頁面URL | https://www.shopyoursook.com/ |
隱私政策頁面URL | https://www.privacypolicies.com/privacy/view/ccd819cb495d1927effd8f299c9a9429 |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sook", "version": "2", "description": "Browse online. Buy from the store next door.", "manifest_version": 2, "browser_action": { "default_popup": "index.html", "default_icon": { "16": "assets\/icons\/logo-16.png", "32": "assets\/icons\/logo-32.png", "48": "assets\/icons\/logo-48.png", "128": "assets\/icons\/logo-128.png" } }, "background": { "page": "index.html", "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.ca\/*", "https:\/\/*.amazon.co.uk\/*" ], "js": [ "assets\/js\/content.js" ] }, { "matches": [ "https:\/\/*.zara.com\/*" ], "js": [ "assets\/js\/zaraParser.js" ] }, { "matches": [ "https:\/\/*.gap.com\/*" ], "js": [ "assets\/js\/gapParser.js" ] }, { "matches": [ "https:\/\/*.asos.com\/*" ], "js": [ "assets\/js\/asosParser.js" ] }, { "matches": [ "https:\/\/*.macys.com\/*" ], "js": [ "assets\/js\/macysParser.js" ] }, { "matches": [ "https:\/\/*.uniqlo.com\/*" ], "js": [ "assets\/js\/uniqloParser.js" ] }, { "matches": [ "https:\/\/*.nordstrom.com\/*" ], "js": [ "assets\/js\/nordstromParser.js" ] }, { "matches": [ "https:\/\/welcome-dev.shopyoursook.com\/success", "https:\/\/welcome.shopyoursook.com\/success" ], "js": [ "assets\/js\/sookWeb.js" ] } ], "permissions": [ "geolocation", "storage" ], "icons": { "16": "assets\/icons\/logo-16.png", "32": "assets\/icons\/logo-32.png", "48": "assets\/icons\/logo-48.png", "128": "assets\/icons\/logo-128.png" } } |