Zillow Price Per Square Foot
Runs in background to automatically add price per square foot right underneath the main asking price of homes
Vad är Zillow Price Per Square Foot?
Zillow Price Per Square Foot är en Chrome-tillägg utvecklad av dgrant069, och dess huvudfunktion är "Runs in background to automatically add price per square foot right underneath the main asking price of homes".
Tilläggsskärmbilder
Ladda ner Zillow Price Per Square Foot-förlängningens CRX-fil
Ladda ner Zillow Price Per Square Foot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Very simple extension made specifically for Zillow home detail pages. Runs in the background once enabled to calculate and display the price per square foot of a listing directly underneath the prominently displayed asking price.
Grundläggande Information om Tillägg
Namn | Zillow Price Per Square Foot |
ID | pidnjioigjcocochaphjipidpnmnffmc |
Officiell webbadress | https://chromewebstore.google.com/detail/zillow-price-per-square-f/pidnjioigjcocochaphjipidpnmnffmc |
Beskrivning | Runs in background to automatically add price per square foot right underneath the main asking price of homes |
Filstorlek | 35.69 KB |
Antal Installationer | 718 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2016-02-03 |
Publiceringsdatum | 2016-02-01 |
Betyg | 4.23/5 Totalt 13 Betyg |
Utvecklare | dgrant069 |
Betalningssätt | free |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zillow Price Per Square Foot", "description": "Runs in background to automatically add price per square foot right underneath the main asking price of homes", "version": "0.1", "content_scripts": [ { "matches": [ "http:\/\/www.zillow.com\/homes\/*" ], "js": [ "jquery-2.2.0.min.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] } } |