Sherlock

Browsing a home? Find everything you need to know instantly.

Sherlock क्या है?

Sherlock https://zerodown.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browsing a home? Find everything you need to know instantly."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sherlock एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Sherlock is a free Chrome plugin that analyzes price trends, permit history, sale history, demographics, quality of life, healthcare access, and more for every home on sale on Zillow and Redfin.

Save time and effort
You don’t need to work on ten tabs to find and dig up information on a home anymore. If there is something that you need to know about a home, Sherlock will find it for you.

A Deep Dive into Every Home
It’s as good as visiting a home, or sometimes even better. Sherlock does the hard work for you by combing through hundreds of data points to deliver instant insights on the home and the neighborhood.

Compare & Bookmark
Simply save a home and see a side-by-side comparison of up to 10 homes. Sherlock is a smart way to bookmark and keep track of the homes that you’re interested in - all in one place!

At present, Sherlock uses 500+ data points to deliver observations and facts, a figure that’s growing fast. These include:

* Comparison to neighbors
* Building permit history
* Property tax history
* Neighborhood demographics
* Top schools
* Transportation options
* Nearby conveniences
* Grocery and food delivery options
* Impact of the local real estate market on pricing
* Effect of climate change on the neighborhood

...and more. 

Currently available in San Francisco Bay Area, Los Angeles, San Diego, Seattle, Austin, Dallas, San Antonio, Houston, Phoenix, and Atlanta metro areas.  If you'd like Sherlock in your city please join our waitlist https://zerodown.com/sherlock-waitlist                    

एक्सटेंशन की मूल जानकारी

नाम Sherlock Sherlock
ID ifggckbahdlgjgogcocjpgblhhdabpii
आधिकारिक URL https://chromewebstore.google.com/detail/sherlock/ifggckbahdlgjgogcocjpgblhhdabpii
विवरण Browsing a home? Find everything you need to know instantly.
फ़ाइल का आकार 675 KB
स्थापना संख्या 260
वर्तमान संस्करण 4.3.2
अंतिम अपडेट 2022-05-19
प्रकाशन तिथि 2020-01-28
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर https://zerodown.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://zerodown.com
सहायता पृष्ठ URL https://zerodown.com/sherlock
गोपनीयता नीति पृष्ठ URL https://zerodown.com/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sherlock",
    "description": "Browsing a home? Find everything you need to know instantly.",
    "version": "4.3.2",
    "browser_action": {
        "default_icon": "sherlock32.png",
        "default_title": "Sherlock",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.zillow.com\/*"
            ],
            "js": [
                "src\/zillowScraper.js",
                "src\/badge.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/www.redfin.com\/*"
            ],
            "js": [
                "src\/redfinScraper.js",
                "src\/badge.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/www.realtor.com\/*"
            ],
            "js": [
                "src\/realtorScraper.js",
                "src\/badge.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/www.trulia.com\/*"
            ],
            "js": [
                "src\/truliaScraper.js",
                "src\/badge.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "32": "sherlock32.png",
        "48": "sherlock48.png",
        "128": "sherlock128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "identity",
        "https:\/\/fonts.googleapis.com\/",
        "https:\/\/zerodown.com\/*",
        "https:\/\/labsapp.zerodown.com\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}