Price2WorkingHours
See prices in working hours - Hungarian Forint only
Price2WorkingHours란 무엇입니까?
Price2WorkingHours은(는) Robert Gaspar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See prices in working hours - Hungarian Forint only"입니다.
확장 프로그램 스크린샷
Price2WorkingHours 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can quickly convert displayed product prices to working hours to motivate or discourage yourself. Supported sites at the moment: - arukereso.hu - edigital.hu - alza.hu - 220volt.hu - emag.hu ** what's new in version 0.6: - added support for 220volt.hu and emag.hu - displaying both price and working hours How to use: 0. Click on the extension icon to see settings. 1. Set your monthly disposable income (net amount) in Hungarian Forints. 2. Set your weekly working hours 3. Press the submit button and navigate to one of the supported sites. You might need to refresh the page to activate changes.
확장 프로그램 기본 정보
이름 | Price2WorkingHours |
ID | hbfcmdlccdnjgnmcikpkgcgcoekdfdac |
공식 URL | https://chromewebstore.google.com/detail/price2workinghours/hbfcmdlccdnjgnmcikpkgcgcoekdfdac |
설명 | See prices in working hours - Hungarian Forint only |
파일 크기 | 446 KB |
설치 횟수 | 42 |
현재 버전 | 0.6 |
최근 업데이트 | 2018-05-27 |
출시 날짜 | 2018-05-27 |
개발자 | Robert Gaspar |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Price2WorkingHours", "description": "See prices in working hours - Hungarian Forint only", "version": "0.6", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "price2hours", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.arukereso.hu\/*", "http:\/\/*.arukereso.hu\/*", "https:\/\/*.alza.hu\/*", "http:\/\/*.alza.hu\/*", "https:\/\/*.edigital.hu\/*", "http:\/\/*.edigital.hu\/*", "http:\/\/*.220volt.hu\/*", "https:\/\/*.220volt.hu\/*", "http:\/\/*.emag.hu\/*", "https:\/\/*.emag.hu\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [ "activeTab", "storage" ] } |