Crosslist Magic
Cross-list between Depop, eBay, Mercari, Poshmark, Vinted and more!
Qu'est-ce que Crosslist Magic ?
Crosslist Magic est une extension Chrome développée par crosslistmagic, et sa fonction principale est "Cross-list between Depop, eBay, Mercari, Poshmark, Vinted and more!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Crosslist Magic
Téléchargez les fichiers d'extension Crosslist Magic au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Free for 7 days (no credit card required), then $9.99/month. This extension puts a little "copy" icon in the top left corner of your Depop, eBay, Mercari, Poshmark and Vinted listings (check FAQ for full list of supported platforms). Clicking on this creates a draft listing on the other platforms that you can review and submit. Also supports relisting on the same platform. Currently, the following fields are copied over to the draft: 1. Title 2. Description 3. Photos 4. Price 5. Category 6. Brand 7. Color Support for Australian, Canadian and UK versions of above platforms is also available. If you have discovered a possible bug, please send me an email with a link to the specific listing you are having trouble with. Screenshots are also welcome as they usually simplify finding the error.
Informations de Base sur l'Extension
Nom | Crosslist Magic |
ID | lkjldebnppchfbcgbeelhpjplklnjfbk |
URL Officiel | https://chromewebstore.google.com/detail/crosslist-magic/lkjldebnppchfbcgbeelhpjplklnjfbk |
Description | Cross-list between Depop, eBay, Mercari, Poshmark, Vinted and more! |
Taille du Fichier | 1.65 MB |
Nombre d'Installations | 3,166 |
Version Actuelle | 0.0.246 |
Dernière Mise à Jour | 2024-03-03 |
Date de Publication | 2021-04-05 |
Évaluation | 4.27/5 Total 55 Évaluations |
Développeur | crosslistmagic |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://www.crosslistmagic.com/ |
URL de la Page d'Aide | https://www.crosslistmagic.com/ |
URL de la Page de Politique de Confidentialité | https://www.crosslistmagic.com/privacy |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crosslist Magic", "version": "0.0.246", "description": "Cross-list between Depop, eBay, Mercari, Poshmark, Vinted and more!", "manifest_version": 3, "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.amazon.ca\/*", "*:\/\/www.amazon.co.uk\/*", "*:\/\/www.amazon.com\/*", "*:\/\/www.amazon.com.au\/*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "src\/content-scripts\/amazon.js" ] }, { "matches": [ "*:\/\/crosslistmagic.com\/*", "*:\/\/*.crosslistmagic.com\/*", "http:\/\/localhost:3000\/*" ], "run_at": "document_start", "js": [ "src\/crosslistmagic.js" ] }, { "matches": [ "*:\/\/www.depop.com\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "depop.css" ], "js": [ "src\/content-scripts\/depop.js" ] }, { "matches": [ "*:\/\/www.etsy.com\/listing\/*", "*:\/\/www.etsy.com\/shop\/*", "*:\/\/www.etsy.com\/*\/listing\/*", "*:\/\/www.etsy.com\/*\/shop\/*", "*:\/\/www.etsy.com\/your\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "etsy.css" ], "js": [ "src\/content-scripts\/etsy.js" ] }, { "matches": [ "*:\/\/www.facebook.com\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "facebook.css" ], "js": [ "jquery.js", "src\/content-scripts\/facebook.js" ] }, { "matches": [ "*:\/\/www.grailed.com\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "grailed.css" ], "js": [ "src\/content-scripts\/grailed.js" ] }, { "matches": [ "*:\/\/www.mercari.com\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "mercari.css" ], "js": [ "src\/content-scripts\/mercari.js" ] }, { "matches": [ "*:\/\/poshmark.com\/category\/*", "*:\/\/poshmark.com\/closet\/*", "*:\/\/poshmark.com\/brand\/*", "*:\/\/poshmark.com\/listing\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "poshmark.css" ], "js": [ "src\/content-scripts\/poshmark.js" ] }, { "matches": [ "*:\/\/poshmark.com.au\/category\/*", "*:\/\/poshmark.com.au\/closet\/*", "*:\/\/poshmark.com.au\/brand\/*", "*:\/\/poshmark.com.au\/listing\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "poshmark.css" ], "js": [ "src\/content-scripts\/poshmark-au.js" ] }, { "matches": [ "*:\/\/poshmark.ca\/category\/*", "*:\/\/poshmark.ca\/closet\/*", "*:\/\/poshmark.ca\/brand\/*", "*:\/\/poshmark.ca\/listing\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "poshmark.css" ], "js": [ "src\/content-scripts\/poshmark-ca.js" ] }, { "matches": [ "*:\/\/poshmark.co.uk\/category\/*", "*:\/\/poshmark.co.uk\/closet\/*", "*:\/\/poshmark.co.uk\/brand\/*", "*:\/\/poshmark.co.uk\/listing\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "poshmark.css" ], "js": [ "src\/content-scripts\/poshmark-uk.js" ] }, { "matches": [ "*:\/\/www.ebay.com\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "ebay.css" ], "js": [ "src\/content-scripts\/ebay.js" ] }, { "matches": [ "*:\/\/www.ebay.com.au\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "ebay.css" ], "js": [ "src\/content-scripts\/ebay-au.js" ] }, { "matches": [ "*:\/\/www.ebay.ca\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "ebay.css" ], "js": [ "src\/content-scripts\/ebay-ca.js" ] }, { "matches": [ "*:\/\/www.ebay.co.uk\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "ebay.css" ], "js": [ "src\/content-scripts\/ebay-uk.js" ] }, { "matches": [ "*:\/\/admin.shopify.com\/store\/*\/products*" ], "run_at": "document_start", "css": [ "crosslist.css", "shopify.css" ], "js": [ "src\/content-scripts\/shopify.js" ] }, { "matches": [ "*:\/\/www.vinted.co.uk\/*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "src\/content-scripts\/vinted-uk.js" ] }, { "matches": [ "*:\/\/www.vinted.ca\/*", "*:\/\/vinted.ca\/*" ], "run_at": "document_start", "css": [ "crosslist.css", "vinted-ca.css" ], "js": [ "src\/content-scripts\/vinted-ca.js" ] }, { "matches": [ "*:\/\/www.vinted.com\/*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "src\/content-scripts\/vinted.js" ] }, { "matches": [ "*:\/\/www.walmart.com\/*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "src\/content-scripts\/walmart.js" ] }, { "matches": [ "*:\/\/www.depop.com\/products\/create\/", "*:\/\/www.depop.com\/products\/create-first" ], "run_at": "document_start", "js": [ "jquery.js", "src\/importers\/depop-import.js" ] }, { "matches": [ "*:\/\/www.ebay.ca\/lstng*", "*:\/\/www.ebay.com\/lstng*", "*:\/\/www.ebay.com.au\/lstng*", "*:\/\/www.ebay.co.uk\/lstng*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/ebay\/ebay-import2.js" ] }, { "matches": [ "*:\/\/www.ebay.ca\/sl\/prelist\/identify*", "*:\/\/www.ebay.com\/sl\/prelist\/identify*", "*:\/\/www.ebay.com.au\/sl\/prelist\/identify*", "*:\/\/www.ebay.co.uk\/sl\/prelist\/identify*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/ebay\/ebay-import3.js" ] }, { "matches": [ "*:\/\/www.etsy.com\/your\/shops\/*\/tools\/listings\/create", "*:\/\/www.etsy.com\/*\/your\/shops\/*\/*\/listings\/create" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/etsy-import.js" ] }, { "matches": [ "*:\/\/www.etsy.com\/your\/shops\/me\/listing-editor\/create\/*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/etsy-import2.js" ] }, { "matches": [ "https:\/\/www.grailed.com\/sell\/new" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/grailed-import.js" ] }, { "matches": [ "*:\/\/*.myshopify.com\/admin\/products\/new", "*:\/\/admin.shopify.com\/store\/*\/products\/new" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/shopify-import.js" ] }, { "matches": [ "*:\/\/starluv.ca\/create-listing" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/starluv-import.js" ] }, { "matches": [ "*:\/\/*.vinted.ca\/*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/vinted-ca-import.js" ] }, { "matches": [ "*:\/\/www.vinted.co.uk\/items\/new", "*:\/\/www.vinted.com\/items\/new" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/vinted-import.js" ] }, { "matches": [ "*:\/\/www.facebook.com\/marketplace\/create\/item" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/facebook-import.js" ] }, { "matches": [ "*:\/\/business.facebook.com\/commerce\/catalogs\/*" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/facebook-commerce-import.js" ] }, { "matches": [ "https:\/\/www.instagram.com\/" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/instagram-import.js" ] }, { "matches": [ "*:\/\/www.mercari.com\/sell\/" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/mercari-import.js" ] }, { "matches": [ "*:\/\/poshmark.com\/create-listing", "*:\/\/poshmark.com.au\/create-listing", "*:\/\/poshmark.ca\/create-listing", "*:\/\/poshmark.co.uk\/create-listing" ], "run_at": "document_start", "css": [ "crosslist.css" ], "js": [ "jquery.js", "src\/importers\/poshmark-import.js" ] }, { "matches": [ "*:\/\/crosslistmagic.com\/*", "*:\/\/*.crosslistmagic.com\/*", "*:\/\/www.depop.com\/*", "*:\/\/www.ebay.com\/*", "*:\/\/www.ebay.com.au\/*", "*:\/\/www.ebay.ca\/*", "*:\/\/www.ebay.co.uk\/*", "*:\/\/www.etsy.com\/*", "*:\/\/www.facebook.com\/*", "*:\/\/*.instagram.com\/*", "*:\/\/www.grailed.com\/*", "*:\/\/www.mercari.com\/*", "*:\/\/poshmark.com\/*", "*:\/\/poshmark.com.au\/*", "*:\/\/poshmark.ca\/*", "*:\/\/poshmark.com\/*", "*:\/\/*.myshopify.com\/*", "*:\/\/admin.shopify.com\/*", "*:\/\/www.vinted.co.uk\/*", "*:\/\/www.vinted.ca\/*", "*:\/\/www.vinted.com\/*" ], "run_at": "document_start", "js": [ "src\/content-scripts\/tracker.js" ] } ], "icons": { "16": "web_accessible_resources\/images\/copy.png", "32": "web_accessible_resources\/images\/copy.png", "48": "web_accessible_resources\/images\/copy.png", "128": "web_accessible_resources\/images\/copy.png" }, "web_accessible_resources": [ { "resources": [ "web_accessible_resources\/*\/*.*" ], "matches": [ " |