Dropshipping Titans Marketplace

Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on…

Τι είναι το Dropshipping Titans Marketplace;

Το Dropshipping Titans Marketplace είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://pauljlipsky.com, και η κύρια λειτουργία του είναι "Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Dropshipping Titans Marketplace

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

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

                        Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on eBay.com and not eBay.uk). 

The Dropshipping Titans Marketplace Helper helps you add products onto Facebook Marketplace  and eBay from other websites like Amazon, Walmart, and Home Depot. It will automatically copy the images, title, and description and create a new Facebook Marketplace listing. 

The Helper can also increase the price of the item automatically based on your requirements. 

v3.3 updates:
*fixed images on Amazon not being grabbed
*Homedebot brand, title, and price not being grabbed
*fixed condition filling up in Facebook
*fixed some change in Facebook that was preventing us from filling any field programmatically                    

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

Όνομα Dropshipping Titans Marketplace Dropshipping Titans Marketplace
ID phijigpcopjaodnfghhnempkkiikmnen
Επίσημο URL https://chromewebstore.google.com/detail/dropshipping-titans-marke/phijigpcopjaodnfghhnempkkiikmnen
Περιγραφή Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on…
Μέγεθος Αρχείου 168 KB
Αριθμός Εγκαταστάσεων 2,624
Τρέχουσα Έκδοση 3.3
Τελευταία Ενημέρωση 2023-04-17
Ημερομηνία Δημοσίευσης 2021-02-17
Αξιολόγηση 2.22/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής https://pauljlipsky.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dropshipping Titans Marketplace",
    "version": "3.3",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "Dropshipping Titans Marketplace",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "facebook.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/bulksell.ebay.com\/ws\/eBayISAPI.dll*",
                "*:\/\/www.ebay.com\/lstng?draftId=*",
                "*:\/\/*.picupload.ebay.com\/picupload\/main",
                "https:\/\/www.ebay.com\/sl\/prelist\/identify*",
                "https:\/\/www.ebay.com\/lstng*"
            ],
            "js": [
                "ebay.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.walmart.com\/*",
                "*:\/\/*.homedepot.com\/*",
                "*:\/\/*.autods.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webRequestBlocking",
        "webRequest",
        "tabs",
        "contextMenus",
        "clipboardRead",
        "clipboardWrite"
    ]
}