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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |