PriceBlink Lite - Coupons & Price Comparison
Checks for Lower Prices and Money-Saving coupons with just one click. On-demand version of the popular PriceBlink extension.
PriceBlink Lite - Coupons & Price Comparison란 무엇입니까?
PriceBlink Lite - Coupons & Price Comparison은(는) https://priceblink.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks for Lower Prices and Money-Saving coupons with just one click. On-demand version of the popular PriceBlink extension."입니다.
확장 프로그램 스크린샷
PriceBlink Lite - Coupons & Price Comparison 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
PriceBlink Lite Finds Lower Prices and Money-Saving Coupons while you shop. Checks for lower prices when you're shopping, otherwise it stays hidden. When you're shopping, PriceBlink Lite lets you know if the product you are viewing is available for cheaper elsewhere. It also alerts you to coupons on the merchant you're shopping. PriceBlink Lite's Terms of Use / EULA / Privacy Policy can be viewed here: https://goo.gl/yatZhO
확장 프로그램 기본 정보
이름 | |
ID | aolpdlffgigjkjejcmjikefloacanfjn |
공식 URL | https://chromewebstore.google.com/detail/priceblink-lite-coupons-p/aolpdlffgigjkjejcmjikefloacanfjn |
설명 | Checks for Lower Prices and Money-Saving coupons with just one click. On-demand version of the popular PriceBlink extension. |
파일 크기 | 27.99 KB |
설치 횟수 | 1,414 |
현재 버전 | 3.4 |
최근 업데이트 | 2021-06-04 |
출시 날짜 | 2017-04-14 |
평점 | 4.00/5 총 8 개의 평점 |
개발자 | https://priceblink.com |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.priceblink.com/webcpns/page.php?sp_id=7 |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PriceBlink Lite - Coupons & Price Comparison", "short_name": "PB Lite", "version": "3.4", "description": "Checks for Lower Prices and Money-Saving coupons with just one click. On-demand version of the popular PriceBlink extension.", "permissions": [ "http:\/\/*\/", "https:\/\/*\/", "tabs", "webNavigation", "webRequest" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": false, "js": [ "main.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "images\/logo.png", "default_title": "PriceBlink", "default_popup": "status.html" }, "web_accessible_resources": [ "images\/*" ], "icons": { "16": "images\/logo.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "options_page": "options.html" } |