Pebble

Find comps directly from any real estate marketplace's website and price with confidence.

Vad är Pebble?

Pebble är en Chrome-tillägg utvecklad av https://pebblerei.com, och dess huvudfunktion är "Find comps directly from any real estate marketplace's website and price with confidence.".

Tilläggsskärmbilder

screenshot

Ladda ner Pebble-förlängningens CRX-fil

Ladda ner Pebble-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

                        The Pebble extension lets you save listing information for all your favorite websites so you can quickly and accurately price your properties.                    

Grundläggande Information om Tillägg

Namn Pebble Pebble
ID jkominpaacpnbhpginoajhbppnfegkci
Officiell webbadress https://chromewebstore.google.com/detail/pebble/jkominpaacpnbhpginoajhbppnfegkci
Beskrivning Find comps directly from any real estate marketplace's website and price with confidence.
Filstorlek 1.22 MB
Antal Installationer 2,438
Aktuell Version 1.5.13
Senast Uppdaterad 2024-02-27
Publiceringsdatum 2022-09-08
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare https://pebblerei.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://pebblerei.com/
Hjälpsida URL https://pebblerei.com/contact-us/
URL till Sekretesspolicy Sidan https://pebblerei.com/privacy-policy
Stödda Språk 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"
    }
}