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== | |
// @name Collmex Searchable Select | |
// @namespace https://klimapartner.de | |
// @version 1.0 | |
// @description alle dropdows sind durchsuchbar | |
// @author Holger Will | |
// @match https://www.collmex.de/cgi-bin/cgi.exe?* | |
// @require http://code.jquery.com/jquery-latest.js | |
// @require https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.2/js/select2.min.js | |
// @resource select2_CSS https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.2/css/select2.min.css |
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
/hex | |
scd serialno | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40 |
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
var liste = document.getElementsByTagName("a") | |
var body = document.createElement("body") | |
var pre = document.createElement("pre") | |
var str = "" | |
for(var i=0;i<liste.length;i++){ | |
str+='"'+liste[i].href+'"|"'+liste[i].textContent+'"\n' | |
} | |
pre.appendChild(document.createTextNode(str)) | |
body.appendChild(pre) |
NewerOlder