Vehicle scraper and Lister

Scrape and list vehicles on facebook marketplace!

Vehicle scraper and Lister क्या है?

Vehicle scraper and Lister Social Auto Group द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scrape and list vehicles on facebook marketplace!"।

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

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

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

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

                        With our chrome extension, you can list a vehicle on Facebook Marketplace is under a minute! Our tool links directly to your dealerships inventory on several third party sites. You select which vehicle you want to list and it will gather all of the information and photos and then automatically list it on Facebook Marketplace for you! This tool will help you list more vehicles on Facebook per day than ever before so that you can focus on selling more cars each month!                    

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

नाम Vehicle scraper and Lister Vehicle scraper and Lister
ID immlnldehndbhbppfbjioeipkojgakpo
आधिकारिक URL https://chromewebstore.google.com/detail/vehicle-scraper-and-liste/immlnldehndbhbppfbjioeipkojgakpo
विवरण Scrape and list vehicles on facebook marketplace!
फ़ाइल का आकार 2.64 MB
स्थापना संख्या 538
वर्तमान संस्करण 2.9
अंतिम अपडेट 2024-01-23
प्रकाशन तिथि 2023-07-13
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Social Auto Group
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vehicle scraper and Lister",
    "description": "Scrape and list vehicles on facebook marketplace!",
    "version": "2.9",
    "manifest_version": 3,
    "host_permissions": [
        "https:\/\/sag.gemquery.com\/*",
        "https:\/\/www.mckinnontoyota.com\/*",
        "*:\/\/*.facebook.com\/*",
        "https:\/\/www.autotrader.com\/*",
        "https:\/\/images.autotrader.com\/*",
        "https:\/\/www.carsforsale.com\/*",
        "https:\/\/www.cars.com\/*",
        "https:\/\/www.carzing.com\/*",
        "https:\/\/cdn05.carsforsale.com\/*",
        "https:\/\/imagescf.dealercenter.net\/*",
        "https:\/\/platform.cstatic-images.com\/*",
        "https:\/\/assets.cai-media-management.com\/*"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "logo.png",
            "32": "logo.png",
            "48": "logo.png",
            "128": "logo.png"
        }
    },
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "facebook.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.autotrader.com\/car-dealers\/*"
            ],
            "js": [
                "auto-trader.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.carsforsale.com\/used-car-dealer\/*"
            ],
            "js": [
                "car-for-sale.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.carzing.com\/dealer\/*"
            ],
            "js": [
                "car-zing.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.cars.com\/dealers\/*"
            ],
            "js": [
                "cars.js"
            ]
        }
    ]
}