Virtual Driving for Dollars

This chrome extension will grab the address from a google map pin and input the property as a deal in your DealMachine account.

Τι είναι το Virtual Driving for Dollars;

Το Virtual Driving for Dollars είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://dealmachine.com, και η κύρια λειτουργία του είναι "This chrome extension will grab the address from a google map pin and input the property as a deal in your DealMachine account.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Virtual Driving for Dollars

Λήψη αρχείων επέκτασης Virtual Driving for Dollars σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Real estate investors can click around in Google Street View and look for run-down houses.

First, download this Chrome Extension.

Log in to the Chrome Extension with your DealMachine Account.

Then head over to maps.google.com

Find the yellow man in the bottom right of the screen. Click and drop him anywhere on the map. 

Now that you're in google street view, find a run down house. When you find one, then click the "pin" in the top left.

Verify the right house is selected.

Open the Chrome extension. Click "Add to list."

You'll see the most recent properties. These properties will also be added to your DealMachine account.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Virtual Driving for Dollars Virtual Driving for Dollars
ID omoeggicbkcmddmdgkhbebajgilbfkpf
Επίσημο URL https://chromewebstore.google.com/detail/virtual-driving-for-dolla/omoeggicbkcmddmdgkhbebajgilbfkpf
Περιγραφή This chrome extension will grab the address from a google map pin and input the property as a deal in your DealMachine account.
Μέγεθος Αρχείου 1.18 MB
Αριθμός Εγκαταστάσεων 5,716
Τρέχουσα Έκδοση 1.6.20
Τελευταία Ενημέρωση 2022-09-30
Ημερομηνία Δημοσίευσης 2020-04-15
Αξιολόγηση 4.78/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής https://dealmachine.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://help.dealmachine.com/en/articles/3737193-dealmachine-chrome-extension
URL της Σελίδας Πολιτικής Απορρήτου https://www.dealmachine.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Virtual Driving for Dollars",
    "version": "1.6.20",
    "description": "This chrome extension will grab the address from a google map pin and input the property as a deal in your DealMachine account.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-48.png",
        "default_title": "Virtual Driving for Dollars"
    },
    "background": {
        "scripts": [
            "js\/global.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/maps\/*"
            ],
            "js": [
                "vendors\/jquery\/jquery.min.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.google.com\/maps\/*"
    ],
    "homepage_url": "https:\/\/dealmachine.com\/"
}