Vehicle scraper and Lister

Scrape and list vehicles on facebook marketplace!

Vehicle scraper and Lister là gì?

Vehicle scraper and Lister là một tiện ích mở rộng Chrome được phát triển bởi Social Auto Group, và tính năng chính của nó là "Scrape and list vehicles on facebook marketplace!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Vehicle scraper and Lister

Tải xuống các tệp mở rộng Vehicle scraper and Lister dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vehicle scraper and Lister Vehicle scraper and Lister
ID immlnldehndbhbppfbjioeipkojgakpo
URL Chính Thức https://chromewebstore.google.com/detail/vehicle-scraper-and-liste/immlnldehndbhbppfbjioeipkojgakpo
Mô tả Scrape and list vehicles on facebook marketplace!
Kích Thước Tệp 2.64 MB
Số Lần Cài Đặt 538
Phiên Bản Hiện Tại 2.9
Cập Nhật Lần Cuối 2024-01-23
Ngày Phát Hành 2023-07-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Social Auto Group
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}