Apartment Organizer For Zillow
Organize data from a bunch of different Zillow listings into one convenient table that can sort and filter out results.
Apartment Organizer For Zillow란 무엇입니까?
Apartment Organizer For Zillow은(는) Andrew Davidson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Organize data from a bunch of different Zillow listings into one convenient table that can sort and filter out results."입니다.
확장 프로그램 스크린샷
Apartment Organizer For Zillow 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
To use it, either: 1) Search for apartments on Zillow at https://www.zillow.com/homes/for_rent/ 2) Without changing to a different tab from your search, click the blue button with an ‘A’ on it in the top right corner of chrome. OR 1) Create a folder of bookmarks to Zillow listings. Bookmarks in subfolders are OK. 2) While on any page that ISN’T a Zillow search page, click the blue button with an ‘A’ on it in the top right corner of chrome. 3) Type in the name of the bookmarks folder with your listings and hit ‘Enter’. This extension does not store, collect, or share your personal data. It has access to your bookmarks, but does not modify them. It does not waste resources in your browser by operating continuously; It runs only when you click the blue button. Don’t just take my word for it! Check out the source code for yourself: https://github.com/Dudeguy409/Apartment_Organizer_Chrome_Extension This extension was not developed by Zillow or any affiliates. It was developed as an independent project by Andrew Davidson: https://www.linkedin.com/in/andrew-davidson-93b3aa90/
확장 프로그램 기본 정보
이름 | Apartment Organizer For Zillow |
ID | fhekihlliinkffagbfbdpmjdhlaeghli |
공식 URL | https://chromewebstore.google.com/detail/apartment-organizer-for-z/fhekihlliinkffagbfbdpmjdhlaeghli |
설명 | Organize data from a bunch of different Zillow listings into one convenient table that can sort and filter out results. |
파일 크기 | 91.35 KB |
설치 횟수 | 53 |
현재 버전 | 1.6 |
최근 업데이트 | 2018-04-12 |
출시 날짜 | 2018-04-12 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Andrew Davidson |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Apartment Organizer For Zillow", "short_name": "Apt Organizr", "manifest_version": 2, "version": "1.6", "description": "Organize data from a bunch of different Zillow listings into one convenient table that can sort and filter out results. ", "background": { "persistent": false, "scripts": [ "app\/background.js" ] }, "permissions": [ "bookmarks", "*:\/\/www.zillow.com\/*" ], "icons": { "16": "icon\/icon16.png", "20": "icon\/icon20.png", "32": "icon\/icon32.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_title": "Apartment Organizer For Zillow", "default_icon": "icon\/icon20.png" } } |