Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wikrie/9dea5156df7de7339e58b59bca004c38 to your computer and use it in GitHub Desktop.
Save wikrie/9dea5156df7de7339e58b59bca004c38 to your computer and use it in GitHub Desktop.
eBay Kleinanzeigen - Anzeige duplizieren
// ==UserScript==
// @namespace https://github.com/J05HI
// @name eBay Kleinanzeigen - Anzeige duplizieren
// @description Bietet eine "Anzeige duplizieren" Funktion beim Bearbeiten einer vorhandenen Anzeige in eBay Kleinanzeigen.
// @icon http://www.google.com/s2/favicons?domain=www.kleinanzeigen.de
// @copyright 2020, J05HI (https://github.com/J05HI)
// @license MIT
// @version 1.0.2
// @match https://www.kleinanzeigen.de/p-anzeige-bearbeiten.html?adId=*
// @grant none
// @require https://code.jquery.com/jquery-3.5.1.min.js
// ==/UserScript==
(function() {
'use strict';
$('#pstad-submit').after('<button id="pstad-duplicate" class="button" type="submit" style="background-color: #86B817;"><span>Anzeige duplizieren</span></button>');
$('#pstad-duplicate').click(function(e) {
e.preventDefault();
$('#postad-id').val('');
$('#adForm').submit();
});
})();
@wikrie
Copy link
Author

wikrie commented Jan 11, 2022

I try it again right now and now the button is there, did not change anything, sounds like a format issue of the script or something like that. thanks for your help @mastermns

@wikrie
Copy link
Author

wikrie commented May 4, 2023

I update the Script from ebay-kleinanzeigen to kleinanzeigne only.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment