This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @namespace https://github.com/J05HI | |
// @name Kleinanzeigen - Anzeige duplizieren | |
// @description Bietet eine "Anzeige duplizieren" Funktion beim Bearbeiten einer vorhandenen Anzeige in Kleinanzeigen. | |
// @icon http://www.google.com/s2/favicons?domain=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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* HOWTO: Copy whole file, open devtools on page (F12 / Ctrl + Shift + i) and paste it into the console | |
* Chrome might ask you to allow downloading multiple images. | |
*/ | |
// credits for forceDownload: https://stackoverflow.com/a/49886131/8463645 | |
function forceDownload(url, fileName){ | |
var xhr = new XMLHttpRequest(); | |
xhr.open("GET", url, true); | |
xhr.responseType = "blob"; |