Pricy - Amazon Price Watch
Never overpay again!
Pricy - Amazon Price Watch란 무엇입니까?
Pricy - Amazon Price Watch은(는) https://pricyapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Never overpay again!"입니다.
확장 프로그램 스크린샷
Pricy - Amazon Price Watch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Never miss a deal again with Pricy ------------- Pricy Extension directly integrates into amazon. When you are watching a product it displayed just below the price tag. ------------- Never Overpay again ------------- Pricy will always tell you when the price of the product is high and if it’s worth waiting for a better price. Based on the price history, Pricy calculates the probable future price for a product. ------------- Check the Price History ------------- Just hover over, and Pricy will show you how the price changed in the past so you can easily find trends and get ready for the big drop. ------------- Instant Price Drop Notifications ------------- Set a price that you would pay for the product. Pricy will monitor the price of the product and send you a notification as soon as it drops below your defined price. Please note, Pricy is currently only available for Amazon.com. Support for other amazon sites coming soon.
확장 프로그램 기본 정보
이름 | Pricy - Amazon Price Watch |
ID | acaddjpeboeoklpaaiopefoidbijnahb |
공식 URL | https://chromewebstore.google.com/detail/pricy-amazon-price-watch/acaddjpeboeoklpaaiopefoidbijnahb |
설명 | Never overpay again! |
파일 크기 | 324 KB |
설치 횟수 | 566 |
현재 버전 | 1.4 |
최근 업데이트 | 2021-01-20 |
출시 날짜 | 2020-10-29 |
평점 | 4.00/5 총 6 개의 평점 |
개발자 | https://pricyapp.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://pricyapp.com |
도움말 페이지 URL | https://pricyapp.com |
개인정보 보호 정책 페이지 URL | https://pricyapp.com/PrivacyPolicy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pricy - Amazon Price Watch", "version": "1.4", "description": "Never overpay again!", "permissions": [ "*:\/\/*.amazon.com\/*", "*:\/\/pricyapp.com\/*", "storage" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "manifest_version": 2, "background": { "scripts": [ "lib\/jquery-3.5.0.min.js", "pricy_b.js" ] }, "browser_action": { "default_title": "Pricy - Jump to Amazon.com", "default_icon": { "16": "images\/pricy16.png", "32": "images\/pricy32.png", "48": "images\/pricy48.png", "128": "images\/pricy128.png", "256": "images\/pricy256.png", "512": "images\/pricy512.png" } }, "icons": { "16": "images\/pricy16.png", "32": "images\/pricy32.png", "48": "images\/pricy48.png", "128": "images\/pricy128.png", "256": "images\/pricy256.png", "512": "images\/pricy512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/pricyapp.com\/*" ], "all_frames": false, "css": [ "pricy.css" ], "js": [ "lib\/jquery-3.5.0.min.js", "lib\/jquery-ui.min.js", "lib\/moment.min.js", "lib\/opentip-jquery.js", "lib\/chart.js", "pricy_js.js", "pricy_cs.js" ], "match_about_blank": false, "run_at": "document_start" } ] } |