Vehicle scraper and Lister
Scrape and list vehicles on facebook marketplace!
Vehicle scraper and Listerとは何ですか?
Vehicle scraper and ListerはSocial Auto Groupによって開発されたChromeの拡張機能で、その主な機能は「Scrape and list vehicles on facebook marketplace!」です。
拡張機能のスクリーンショット
Vehicle scraper and Lister拡張機能のCRXファイルをダウンロード
Vehicle scraper and Lister拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" ] } ] } |