Pebble
Find comps directly from any real estate marketplace's website and price with confidence.
Pebble란 무엇입니까?
Pebble은(는) https://pebblerei.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find comps directly from any real estate marketplace's website and price with confidence."입니다.
확장 프로그램 스크린샷
Pebble 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Pebble extension lets you save listing information for all your favorite websites so you can quickly and accurately price your properties.
확장 프로그램 기본 정보
이름 | Pebble |
ID | jkominpaacpnbhpginoajhbppnfegkci |
공식 URL | https://chromewebstore.google.com/detail/pebble/jkominpaacpnbhpginoajhbppnfegkci |
설명 | Find comps directly from any real estate marketplace's website and price with confidence. |
파일 크기 | 1.22 MB |
설치 횟수 | 2,438 |
현재 버전 | 1.5.13 |
최근 업데이트 | 2024-02-27 |
출시 날짜 | 2022-09-08 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://pebblerei.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://pebblerei.com/ |
도움말 페이지 URL | https://pebblerei.com/contact-us/ |
개인정보 보호 정책 페이지 URL | https://pebblerei.com/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Pebble", "version": "1.5.13", "description": "Find comps directly from any real estate marketplace's website and price with confidence.", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "storage" ], "action": { "default_icon": { "16": "icon.png", "24": "icon.png", "32": "icon.png" }, "default_title": "Pebble", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/zillow.com\/*" ], "js": [ "content-scripts\/zillow.js" ] }, { "matches": [ "https:\/\/www.zillow.com\/*" ], "js": [ "content-scripts\/zillow.js" ] }, { "matches": [ "https:\/\/realtor.com\/*" ], "js": [ "content-scripts\/realtor.js" ] }, { "matches": [ "https:\/\/www.realtor.com\/*" ], "js": [ "content-scripts\/realtor.js" ] }, { "matches": [ "https:\/\/land.com\/*" ], "js": [ "content-scripts\/land.js" ] }, { "matches": [ "https:\/\/www.land.com\/*" ], "js": [ "content-scripts\/land.js" ] }, { "matches": [ "https:\/\/redfin.ca\/*", "https:\/\/redfin.com\/*" ], "js": [ "content-scripts\/redfin.js" ] }, { "matches": [ "https:\/\/www.redfin.ca\/*", "https:\/\/www.redfin.com\/*" ], "js": [ "content-scripts\/redfin.js" ] }, { "matches": [ "https:\/\/landwatch.com\/*" ], "js": [ "content-scripts\/landwatch.js" ] }, { "matches": [ "https:\/\/www.landwatch.com\/*" ], "js": [ "content-scripts\/landwatch.js" ] }, { "matches": [ "https:\/\/landmodo.com\/*" ], "js": [ "content-scripts\/landmodo.js" ] }, { "matches": [ "https:\/\/www.landmodo.com\/*" ], "js": [ "content-scripts\/landmodo.js" ] } ], "background": { "service_worker": "background.js" } } |